bigIncrements('id');
$table->uuid('uuid')->nullable();
$table->text('title')->nullable();
$table->longText('description')->nullable();
$table->bigInteger('subject_id')->unsigned()->nullable();
$table->foreign('subject_id')->references('id')->on('subjects')->onDelete('cascade');
$table->bigInteger('employee_id')->unsigned()->nullable();
$table->foreign('employee_id')->references('id')->on('employees')->onDelete('cascade');
$table->uuid('upload_token')->nullable();
$table->text('options')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('notes', function(Blueprint $table)
{
$table->dropForeign('notes_subject_id_foreign');
$table->dropForeign('notes_employee_id_foreign');
});
Schema::dropIfExists('notes');
}
}