Skip to content
This repository was archived by the owner on Mar 12, 2024. It is now read-only.

Commit 8e8fd72

Browse files
committed
make sortorder nullable
1 parent 5fec12f commit 8e8fd72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/create_inforce_tables.php.stub

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class CreateInforceTables extends Migration
1919
$table->string('name');
2020
$table->string('route')->nullable();
2121
$table->string('permission')->nullable();
22-
$table->bigInteger('sort_order');
22+
$table->bigInteger('sort_order')->nullable();
2323
$table->text('icon')->nullable();
2424
$table->boolean('editable')->default(true);
2525
$table->timestamps();

0 commit comments

Comments
 (0)