How do I completely remove database and create aga...
# random
h
How do I completely remove database and create again? I’ve deleted the default@default database locally and prisma deploy is failed telling me table doesn’t exists.
n
How about removing the prisma server and starting it up again?
h
I’ve done docker-compose down
and docker-compose up again
Still the same
n
Could you show the output of
prisma deploy
?
h
Copy code
Deploying service `default` to stage `default` to server `local` 432ms
Service is already up to date.

post-deploy:
project prisma - No changes

Running graphql get-schema -p prisma ✔
here it is
n
You probably need to remove the prisma database too
h
How can I do that?
You mean delete prisma database manually?
in mysql terminal?
n
You could try that. But first stop the prisma server
h
yeah my docker-compose is down
n
Maybe it would be easier to just remove the mysql volume
h
I am using azure mysql
remotely
n
ok then… try to delete the prisma database
then start prima again
h
Thanks. Dropping all the
prisma
database and
default@default
database helped.