add Period resource
This commit is contained in:
parent
cc64e20ad5
commit
afcdd940dd
|
@ -14,7 +14,7 @@ return new class extends Migration
|
||||||
Schema::create('periods', function (Blueprint $table) {
|
Schema::create('periods', function (Blueprint $table) {
|
||||||
$table->id();
|
$table->id();
|
||||||
$table->integer('position');
|
$table->integer('position');
|
||||||
$table->integer('period');
|
$table->float('period');
|
||||||
$table->foreignId('education_form_id')->constrained('education_forms');
|
$table->foreignId('education_form_id')->constrained('education_forms');
|
||||||
$table->foreignId('direction_id')->constrained('directions');
|
$table->foreignId('direction_id')->constrained('directions');
|
||||||
$table->text('description')->nullable();
|
$table->text('description')->nullable();
|
||||||
|
|
Loading…
Reference in New Issue