removing dummy table for db migration pipeline test
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 1m48s

This commit is contained in:
lila 2026-04-23 09:39:18 +02:00
parent d67263e44a
commit cc0d2c7f8f
4 changed files with 1192 additions and 3 deletions

View file

@ -0,0 +1 @@
DROP TABLE "dummy" CASCADE;

File diff suppressed because it is too large Load diff

View file

@ -71,6 +71,13 @@
"when": 1776928720684, "when": 1776928720684,
"tag": "0009_rapid_cobalt_man", "tag": "0009_rapid_cobalt_man",
"breakpoints": true "breakpoints": true
},
{
"idx": 10,
"version": "7",
"when": 1776929932845,
"tag": "0010_thankful_reaper",
"breakpoints": true
} }
] ]
} }

View file

@ -10,7 +10,6 @@ import {
index, index,
boolean, boolean,
integer, integer,
serial,
} from "drizzle-orm/pg-core"; } from "drizzle-orm/pg-core";
import { sql, relations } from "drizzle-orm"; import { sql, relations } from "drizzle-orm";
@ -331,5 +330,3 @@ export const lobbyPlayersRelations = relations(lobby_players, ({ one }) => ({
}), }),
user: one(user, { fields: [lobby_players.userId], references: [user.id] }), user: one(user, { fields: [lobby_players.userId], references: [user.id] }),
})); }));
export const dummy = pgTable("dummy", { id: serial("id").primaryKey() });