:wave: I seem to have gotten my local postgres dat...
# orm-help
f
👋 I seem to have gotten my local postgres database into a slightly bad state. I am seeing an error when bringing up my postgres container
ERROR:  database "prisma" already exists
. Any ideas on how to get around this?
c
in my experience, thats generally just a warning. prisma tries to create the schema each time but if it already exists, postgres complains but prisma moves on
for example, i have this in my docker logs but my prisma service is working as expected:
Copy code
postgres_1  | 2019-04-17 18:23:06.860 UTC [1] LOG:  database system is ready to accept connections
prisma_1    | No log level set, defaulting to INFO.
postgres_1  | 2019-04-17 18:23:21.564 UTC [32] ERROR:  database "prisma" already exists
postgres_1  | 2019-04-17 18:23:21.564 UTC [32] STATEMENT:  CREATE DATABASE "prisma"
prisma_1    | [INFO] Obtaining exclusive agent lock...
prisma_1    | [INFO] Initializing workers...
prisma_1    | [INFO] Obtaining exclusive agent lock... Successful.
prisma_1    | [INFO] Successfully started 1 workers.
prisma_1    | [INFO] Deployment worker initialization complete.
f
Okay thanks