Skip to content

Commit

Permalink
make parent_id unsigned
Browse files Browse the repository at this point in the history
  • Loading branch information
venix12 committed Jan 3, 2025
1 parent ea6bd9b commit cb30c70
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
public function up(): void
{
Schema::table('multiplayer_rooms', function (Blueprint $table) {
$table->bigInteger('parent_id')->nullable()->unique();
$table->bigInteger('parent_id')
->unsigned()
->nullable()
->unique();
});
}

Expand Down

0 comments on commit cb30c70

Please sign in to comment.