mirror of
https://github.com/apotdevin/thunderhub.git
synced 2026-08-13 12:33:08 +02:00
11 lines
262 B
Bash
Executable file
11 lines
262 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "Generating SQLite migrations..."
|
|
DB_TYPE=sqlite npx drizzle-kit generate
|
|
|
|
echo ""
|
|
echo "Generating PostgreSQL migrations..."
|
|
DB_TYPE=postgres npx drizzle-kit generate
|
|
|
|
echo ""
|
|
echo "Done. Migrations generated in drizzle/sqlite/ and drizzle/pg/"
|