mirror of
https://github.com/carrotquest/django-clickhouse.git
synced 2024-11-22 17:16:37 +03:00
d4e9a705d1
2) Bug fixes 3) Simple tests on syncing MergeTree and CollapsingMergeTree
12 lines
339 B
Python
12 lines
339 B
Python
|
|
from infi.clickhouse_orm.migrations import CreateTable
|
|
from django_clickhouse import migrations
|
|
from tests.clickhouse_models import ClickHouseTestModel, ClickHouseCollapseTestModel
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
operations = [
|
|
CreateTable(ClickHouseTestModel),
|
|
CreateTable(ClickHouseCollapseTestModel)
|
|
]
|