prodV1 #2

Open
RomanGolienko wants to merge 309 commits from prodV1 into main
1 changed files with 1 additions and 1 deletions
Showing only changes of commit afcdd940dd - Show all commits

View File

@ -14,7 +14,7 @@ return new class extends Migration
Schema::create('periods', function (Blueprint $table) {
$table->id();
$table->integer('position');
$table->integer('period');
$table->float('period');
$table->foreignId('education_form_id')->constrained('education_forms');
$table->foreignId('direction_id')->constrained('directions');
$table->text('description')->nullable();