Hey ppl, can I restore a prisma server from a prev...
# orm-help
n
Hey ppl, can I restore a prisma server from a previous prisma server postgres dump or it is only possible with the SDL export?
h
You can import from a SQL dump as well if your management schema is also dumped. You will need to run prisma deploy after restoring the dump. The management schema stores migration metadata in the migrations table so it required.
n
@Harshit management schema is the
datamodel.graphql
?
h
no, it is a postgres schema inside the database