feat: drop cc_locale table
This commit is contained in:
parent
0e4bc4cacd
commit
4be8bde14e
|
@ -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,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
]
|
|
@ -1 +1 @@
|
||||||
LEGACY_SCHEMA_VERSION = "3.0.0-alpha.9.4"
|
LEGACY_SCHEMA_VERSION = "3.0.0-alpha.13.1"
|
||||||
|
|
Loading…
Reference in New Issue