feat(db): idempotent migrations + auto-deploy on startup
- Rewrite 0000_init with IF NOT EXISTS on all tables, indexes and enums; wrap FK constraints in DO/EXCEPTION blocks so re-runs never fail - Add missing suggestions table to init migration - Add migration 0002 to create message_logs table (IF NOT EXISTS) - Add entrypoint.sh: runs prisma migrate deploy before starting the server - Update Dockerfile to copy entrypoint.sh and use it as CMD - Add prisma:migrate script to package.json for manual runs Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Sonnet 4.6
parent
749a1e860d
commit
1e63ed1873
@@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
echo "Running database migrations..."
|
||||
node_modules/.bin/prisma migrate deploy
|
||||
|
||||
exec node dist/main.js
|
||||
Reference in New Issue
Block a user