From 858492cd2e0c0edb1ccba4c2b700f7dbfd76ac68 Mon Sep 17 00:00:00 2001 From: aslan Date: Wed, 13 Mar 2024 14:08:40 +0300 Subject: [PATCH] fix cost_paid_place table directions field name --- .../migrations/2024_02_09_114155_create_directions_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2024_02_09_114155_create_directions_table.php b/database/migrations/2024_02_09_114155_create_directions_table.php index 1e8e481..dc8469d 100644 --- a/database/migrations/2024_02_09_114155_create_directions_table.php +++ b/database/migrations/2024_02_09_114155_create_directions_table.php @@ -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(); });