wikijs/rootfs/etc/cont-init.d/02-fix-postgre-schema

10 lines
403 B
Plaintext
Raw Normal View History

2019-11-02 13:41:53 +00:00
#!/usr/bin/with-contenv sh
if [ "$DB_TYPE" == "postgres" ]; then
# starting at 3 because the
2019-11-02 13:41:53 +00:00
psql --host "$DB_HOST" --port "$DB_PORT" --username "$DB_USER" --dbname "$DB_NAME" --command \
"ALTER SEQUENCE users_id_seq START WITH 3;"
sql --host "$DB_HOST" --port "$DB_PORT" --username "$DB_USER" --dbname "$DB_NAME" --command \
"ALTER SEQUENCE groups_id_seq START WITH 3;"
2019-11-02 13:41:53 +00:00
fi