mirror of
https://github.com/fergalmoran/kidarr-server.git
synced 2026-01-04 07:45:50 +00:00
17 lines
339 B
Bash
Executable File
17 lines
339 B
Bash
Executable File
#!/usr/bin/env bash
|
|
export PGUSER=postgres
|
|
export PGPASSWORD=hackme
|
|
export PGHOST=localhost
|
|
|
|
|
|
echo Removing migrations
|
|
rm -rf drizzle
|
|
echo "Dropping db"
|
|
|
|
dropdb -f --if-exists parentgrine
|
|
echo "Creating db"
|
|
createdb parentgrine
|
|
|
|
npx drizzle-kit generate:pg --config=./drizzle.config.ts
|
|
npx drizzle-kit push:pg --config=./drizzle.config.ts
|