fix user id sequence in postgre

This commit is contained in:
Sebastian Hugentobler 2019-11-02 14:41:53 +01:00
parent 35fc1d2356
commit 9da2c9381a

View File

@ -0,0 +1,6 @@
#!/usr/bin/with-contenv sh
if [ "$DB_TYPE" == "postgres" ]; then
psql --host "$DB_HOST" --port "$DB_PORT" --username "$DB_USER" --dbname "$DB_NAME" --command \
"CREATE SEQUENCE IF NOT EXISTS users_id_seq AS integer START 1 OWNED BY users.id; ALTER TABLE users ALTER COLUMN id SET DEFAULT nextval('users_id_seq');"
fi