drop tables

Mmr_pablo5/24/2023
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?
Mmr_pablo5/24/2023
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?
ASAndrii Sherman5/24/2023
we don't have support for down migrations
ASAndrii Sherman5/24/2023
so far any down migration is a new migration with dropping something
Mmr_pablo5/24/2023
no incremental migrations? like doing 1 or 2 in a step?