fix: resolve TS error in seed.ts + use compose.deploy for CI

This commit is contained in:
2026-01-30 04:26:10 +00:00
parent 30a535c481
commit 5c9df803c2
2 changed files with 3 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ async function seed() {
SELECT tablename FROM pg_tables WHERE schemaname = 'public'
`);
for (const row of tables.rows) {
for (const row of tables as any) {
const table = (row as any).tablename;
if (table.startsWith('__drizzle') || table.startsWith('pgboss')) continue;
console.log(` Truncating ${table}...`);