chat-dev / scripts /migrate-to-postgres.js
incognitolm
step 2
03eabfb
raw
history blame contribute delete
200 Bytes
import { runPostgresMigrationCli } from '../server/postgresMigration.js';
runPostgresMigrationCli().catch((err) => {
console.error('PostgreSQL migration failed:', err);
process.exitCode = 1;
});