fix(api): cascade when dropping table (#1908)
This is supposed to work without it, but this is to be safe.
This commit is contained in:
parent
4837a1885d
commit
a7c45fb0e1
|
@ -5,7 +5,7 @@ from django.db import migrations
|
||||||
from ._migrations import legacy_migration_factory
|
from ._migrations import legacy_migration_factory
|
||||||
|
|
||||||
UP = """
|
UP = """
|
||||||
DROP TABLE IF EXISTS "cc_sess";
|
DROP TABLE IF EXISTS "cc_sess" CASCADE;
|
||||||
"""
|
"""
|
||||||
|
|
||||||
DOWN = """
|
DOWN = """
|
||||||
|
|
Loading…
Reference in New Issue