feat: drop cc_locale table

This commit is contained in:
jo 2022-04-05 16:03:16 +02:00 committed by Kyle Robbertze
parent 0e4bc4cacd
commit 4be8bde14e
2 changed files with 24 additions and 1 deletions

View File

@ -0,0 +1,23 @@
from django.db import migrations
from ._migrations import legacy_migration_factory
UP = """
DROP TABLE IF EXISTS cc_locale CASCADE;
"""
DOWN = None
class Migration(migrations.Migration):
dependencies = [
("legacy", "0026_3_0_0_alpha_9_4"),
]
operations = [
migrations.RunPython(
code=legacy_migration_factory(
target="3.0.0-alpha.13.1",
sql=UP,
)
)
]

View File

@ -1 +1 @@
LEGACY_SCHEMA_VERSION = "3.0.0-alpha.9.4"
LEGACY_SCHEMA_VERSION = "3.0.0-alpha.13.1"