mirror of
https://github.com/carrotquest/django-clickhouse.git
synced 2025-02-15 02:10:33 +03:00
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)
|
|
]
|