Closed bpblanken closed 1 week ago
Per the Postgres image docs:
scripts in /docker-entrypoint-initdb.d are only run if you start the container with a data directory that is empty; any pre-existing database will be left untouched on container startup
so this should be safe even without IF NOT EXISTS .
IF NOT EXISTS
Per the Postgres image docs:
so this should be safe even without
IF NOT EXISTS
.