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:
Jonas L 2022-06-22 16:08:05 +02:00 committed by GitHub
parent 4837a1885d
commit a7c45fb0e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ from django.db import migrations
from ._migrations import legacy_migration_factory
UP = """
DROP TABLE IF EXISTS "cc_sess";
DROP TABLE IF EXISTS "cc_sess" CASCADE;
"""
DOWN = """