Hi,
are there any plans to add a “cascade” option to dropTable and dropColumn?
For Oracle and Postgres this is very convenient because it is then not necessary to drop each and every constraint manually. So a
would generate a “DROP TABLE some_table CASCADE CONSTRAINTS” for Oracle and “DROP TABLE some_table CASCADE” for Postgres
Currently this needs to be done using which is a bit clumsy