chore: bump legacy schema version
This commit is contained in:
parent
882f8e04c6
commit
10a60d3673
|
@ -0,0 +1,22 @@
|
||||||
|
# pylint: disable=invalid-name
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
from ._migrations import legacy_migration_factory
|
||||||
|
|
||||||
|
UP = """"""
|
||||||
|
|
||||||
|
DOWN = """"""
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
dependencies = [
|
||||||
|
("legacy", "0039_remove_stream_settings_stats_status"),
|
||||||
|
]
|
||||||
|
operations = [
|
||||||
|
migrations.RunPython(
|
||||||
|
code=legacy_migration_factory(
|
||||||
|
target="3.0.0-beta.0.1",
|
||||||
|
)
|
||||||
|
)
|
||||||
|
]
|
|
@ -1 +1 @@
|
||||||
LEGACY_SCHEMA_VERSION = "3.0.0-alpha.14.3"
|
LEGACY_SCHEMA_VERSION = "3.0.0-beta.0.1"
|
||||||
|
|
Loading…
Reference in New Issue