Django created a migration for dropping a field from a table:
ALTER TABLE "my_table" DROP COLUMN "my_deprecated_field" CASCADE;
COMMIT;
I would like to know which consquences the CASCADE has, i.e. which other columns, tables, triggers, etc. are going to be affected by it.
Since there is no EXPLAIN ALTER, which other means do I have to find out?