mirror of
https://github.com/carrotquest/django-clickhouse.git
synced 2024-11-13 04:46:34 +03:00
68914a20f0
some refactoring
11 lines
306 B
Python
11 lines
306 B
Python
|
|
from django_clickhouse import migrations
|
|
from tests.clickhouse_models import ClickHouseTestModel, ClickHouseCollapseTestModel
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
operations = [
|
|
migrations.CreateTable(ClickHouseTestModel),
|
|
migrations.CreateTable(ClickHouseCollapseTestModel)
|
|
]
|