From 29e88a440f2d9cc64ed7dff6f816d3fd0462acad Mon Sep 17 00:00:00 2001 From: TheArcaneBrony Date: Sun, 7 Aug 2022 21:43:38 +0200 Subject: Add migrations --- bundle/scripts/db_migrations.sh | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 bundle/scripts/db_migrations.sh (limited to 'bundle/scripts/db_migrations.sh') diff --git a/bundle/scripts/db_migrations.sh b/bundle/scripts/db_migrations.sh new file mode 100755 index 00000000..b0e1131c --- /dev/null +++ b/bundle/scripts/db_migrations.sh @@ -0,0 +1,32 @@ +#!/bin/sh +read -p "Enter migration filename: " FILENAME +[ -f ".env" ] && ( + mv .env .env.tmp + source .env.tmp +) + +make_migration() { + echo "Creating migrations for $2" + mkdir "../util/src/migrations/$2" + npm run build clean logerrors pretty-errors + THREADS=1 DATABASE="$1" DB_MIGRATE=a npm run start:bundle + THREADS=1 DATABASE="$1" DB_MIGRATE=a npx typeorm-ts-node-commonjs migration:generate "../util/src/migrations/$2/$FILENAME" -d ../util/src/util/Database.ts -p + npm run build clean logerrors pretty-errors + THREADS=1 DATABASE="$1" DB_MIGRATE=a npm run start:bundle +} + +npm i sqlite3 +make_migration "database.db" "sqlite" + +[ -z "$FC_DB_POSTGRES" ] || ( + npm i pg + make_migration "$FC_DB_POSTGRES" "postgres" +) + +[ -z "$FC_DB_MARIADB" ] || ( + npm i mysql2 + make_migration "$FC_DB_MARIADB" "mariadb" +) + +[ -f ".env.tmp" ] && mv .env.tmp .env + -- cgit 1.5.1