removing dummy table for db migration pipeline test
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 1m48s
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 1m48s
This commit is contained in:
parent
d67263e44a
commit
cc0d2c7f8f
4 changed files with 1192 additions and 3 deletions
1
packages/db/drizzle/0010_thankful_reaper.sql
Normal file
1
packages/db/drizzle/0010_thankful_reaper.sql
Normal file
|
|
@ -0,0 +1 @@
|
|||
DROP TABLE "dummy" CASCADE;
|
||||
1184
packages/db/drizzle/meta/0010_snapshot.json
Normal file
1184
packages/db/drizzle/meta/0010_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -71,6 +71,13 @@
|
|||
"when": 1776928720684,
|
||||
"tag": "0009_rapid_cobalt_man",
|
||||
"breakpoints": true
|
||||
},
|
||||
{
|
||||
"idx": 10,
|
||||
"version": "7",
|
||||
"when": 1776929932845,
|
||||
"tag": "0010_thankful_reaper",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -10,7 +10,6 @@ import {
|
|||
index,
|
||||
boolean,
|
||||
integer,
|
||||
serial,
|
||||
} from "drizzle-orm/pg-core";
|
||||
|
||||
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] }),
|
||||
}));
|
||||
|
||||
export const dummy = pgTable("dummy", { id: serial("id").primaryKey() });
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue