is it possible to have prisma directly build the schema in an empty database directly from the prisma file, instead of having to create the migration?
the use case is a local test database that i’m running integration tests against and when when making small changes to the prisma file, the step of creating a migration is one too many. i’m looking for a way to rebuild the database from scratch based on the current contents of the prisma file (i’ll make the migration later, once the changes are settled and tested)