Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/world-postgres/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"clean": "tsc --build --clean && rm -rf dist",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"db:push": "pnpm exec drizzle-kit --version && drizzle-kit push"
"db:push": "node dist/cli.js"
},
"dependencies": {
"@vercel/queue": "0.0.0-alpha.23",
Expand Down
2 changes: 1 addition & 1 deletion packages/world-postgres/test/storage.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe('Storage (Postgres integration)', () => {
let events: ReturnType<typeof createEventsStorage>;

async function truncateTables() {
await sql`TRUNCATE TABLE workflow_events, workflow_steps, workflow_hooks, workflow_runs RESTART IDENTITY CASCADE`;
await sql`TRUNCATE TABLE workflow.workflow_events, workflow.workflow_steps, workflow.workflow_hooks, workflow.workflow_runs RESTART IDENTITY CASCADE`;
}

beforeAll(async () => {
Expand Down
Loading