pull/5256/head
Daniel Supernault 2024-08-07 22:28:21 -06:00
rodzic 8fea821504
commit 3a49876e31
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 23740873EE6F76A1
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

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

Wyświetl plik

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