mirror of
https://github.com/carrotquest/django-clickhouse.git
synced 2024-11-15 13:56:35 +03:00
11 lines
260 B
Python
11 lines
260 B
Python
|
|
from infi.clickhouse_orm.migrations import CreateTable
|
|
from django_clickhouse import migrations
|
|
from tests.clickhouse_models import TestClickHouseModel
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
operations = [
|
|
CreateTable(TestClickHouseModel)
|
|
]
|