chore: bump legacy schema version

This commit is contained in:
jo 2022-09-15 16:46:19 +02:00 committed by Kyle Robbertze
parent 882f8e04c6
commit 10a60d3673
2 changed files with 23 additions and 1 deletions

View File

@ -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",
)
)
]

View File

@ -1 +1 @@
LEGACY_SCHEMA_VERSION = "3.0.0-alpha.14.3"
LEGACY_SCHEMA_VERSION = "3.0.0-beta.0.1"