Fix migrations

pull/5256/head
Daniel Supernault 11 months ago
parent 8fea821504
commit 3a49876e31
No known key found for this signature in database
GPG Key ID: 23740873EE6F76A1

@ -14,8 +14,8 @@ class AddSnowflakeidsToUsersTable extends Migration
public function up() public function up()
{ {
Schema::table('statuses', function (Blueprint $table) { Schema::table('statuses', function (Blueprint $table) {
$table->dropPrimary('id');
$table->bigInteger('id')->unsigned()->primary()->change(); $table->bigInteger('id')->unsigned()->primary()->change();
$table->dropPrimary('id');
}); });
} }

@ -14,13 +14,13 @@ class AddSnowflakeIdsToCollectionsTable extends Migration
public function up() public function up()
{ {
Schema::table('collections', function (Blueprint $table) { Schema::table('collections', function (Blueprint $table) {
$table->dropPrimary('id');
$table->bigInteger('id')->unsigned()->primary()->change(); $table->bigInteger('id')->unsigned()->primary()->change();
$table->dropPrimary('id');
}); });
Schema::table('collection_items', function (Blueprint $table) { Schema::table('collection_items', function (Blueprint $table) {
$table->dropPrimary('id');
$table->bigInteger('id')->unsigned()->primary()->change(); $table->bigInteger('id')->unsigned()->primary()->change();
$table->dropPrimary('id');
}); });
} }

Loading…
Cancel
Save