Skip to content

Commit 8c87ba7

Browse files
committed
Remove nullable in down
1 parent 062f5d1 commit 8c87ba7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/sprinkles/account/src/Database/Migrations/v430/UpdateUsersTable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function up()
5151
public function down()
5252
{
5353
$this->schema->table('users', function (Blueprint $table) {
54-
$table->unsignedInteger('group_id')->default(1)->comment('The id of the user group.')->nullable(false)->change();
54+
$table->unsignedInteger('group_id')->default(1)->comment('The id of the user group.')->change();
5555
});
5656
}
5757
}

0 commit comments

Comments
 (0)