Removed db migrations from script

This commit is contained in:
Jack Kawell 2021-12-07 14:56:56 -07:00
parent a6190fe29d
commit b1e700e2a2

View File

@ -80,17 +80,6 @@ function fdb_to_sqlite() {
)
}
function run_db_migrations() {
(
cd /app/migrations/dlu
readarray -d '' entries < <(printf '%s\0' *.sql | sort -zV)
for entry in "${entries[@]}"; do
echo "Execute $entry"
mysql -h"$DATABASE_HOST" -P"$DATABASE_PORT" -u"$DATABASE_USER" -p"$DATABASE_PASSWORD" $DATABASE < $entry
done
)
}
set_defaults
check_sql_connection
@ -118,8 +107,6 @@ symlink_client_files
fdb_to_sqlite
run_db_migrations
echo "Start MasterServer"
./MasterServer