DT
Join ServerDrizzle Team
help
drop tables
Is there a way to do a migration to drop tables? Other ORMs like Sequelize and Prisma have a concept of up & down migrations, but Drizzle doesn't. Is there a Drizzle way to do a "down" migration?
So looks like drizzle kit does indeed create migrations to drop tables when you remove them from the schema file. but i'd still like to know if you can do incremental up/down migrations?
we don't have support for down migrations
so far any down migration is a new migration with dropping something
no incremental migrations? like doing 1 or 2 in a step?