client.end() in the finally block was throwing (postgres driver already
cleaned up connections internally during migrate()), causing an unhandled
rejection and exit code 1 despite the migration succeeding.
- Use explicit process.exit(0)/exit(1) instead of relying on implicit exit
- Wrap both client.end() calls with .catch(() => {}) to tolerate cleanup errors
- Add onnotice: () => {} to suppress noisy NOTICE messages (schema/table
already exists) that are normal on every idempotent re-run
https://claude.ai/code/session_01ReaqH3o9NVH4QU4qE9WMMQ
32 lines
952 B
JavaScript
32 lines
952 B
JavaScript
import { drizzle } from "drizzle-orm/postgres-js";
|
|
import { migrate } from "drizzle-orm/postgres-js/migrator";
|
|
import postgres from "postgres";
|
|
import { fileURLToPath } from "url";
|
|
import path from "path";
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
|
|
if (!process.env.DATABASE_URL) {
|
|
console.error("ERROR: DATABASE_URL is required");
|
|
process.exit(1);
|
|
}
|
|
|
|
console.log("Running database migrations...");
|
|
const client = postgres(process.env.DATABASE_URL, {
|
|
max: 1,
|
|
onnotice: () => {}, // suppress NOTICE messages (schema/table already exists, etc.)
|
|
});
|
|
|
|
try {
|
|
const db = drizzle(client);
|
|
await migrate(db, { migrationsFolder: path.resolve(__dirname, "../drizzle") });
|
|
console.log("Migrations completed successfully");
|
|
} catch (err) {
|
|
console.error("Migration failed:", err);
|
|
await client.end().catch(() => {});
|
|
process.exit(1);
|
|
}
|
|
|
|
await client.end().catch(() => {});
|
|
process.exit(0);
|