fix cost_paid_place table directions field name

This commit is contained in:
aslan 2024-03-13 14:08:40 +03:00
parent f5638722a6
commit 858492cd2e
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ return new class extends Migration
$table->smallInteger('budget_places');
$table->smallInteger('quota');
$table->smallInteger('paid_places');
$table->smallInteger('cost_paid_place');
$table->integer('cost_paid_place');
$table->float('period');
$table->timestamps();
});