Skip to content

Commit 9ae27e2

Browse files
committed
fix wrong type for database migration
1 parent 7b0d185 commit 9ae27e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/2025_11_28_065333_add_get_parameters_to_stores_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public function up(): void
1313
{
1414
Schema::table('stores', function (Blueprint $table) {
1515
$table->text('allowed_params')->nullable();
16-
$table->text('are_params_allowed')->default(false);
16+
$table->boolean('are_params_allowed')->default(false);
1717
});
1818
}
1919

0 commit comments

Comments
 (0)