add Period resource

This commit is contained in:
aslan 2024-02-26 13:10:16 +03:00
parent cc64e20ad5
commit afcdd940dd
1 changed files with 1 additions and 1 deletions

View File

@ -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();