7 lines
330 B
Plaintext
7 lines
330 B
Plaintext
|
#!/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
|