mirror of
https://github.com/PostHog/posthog.git
synced 2024-12-01 12:21:02 +01:00
6 lines
233 B
Python
6 lines
233 B
Python
from infi.clickhouse_orm import migrations
|
|
|
|
from ee.clickhouse.sql.person import PERSONS_DISTINCT_ID_TABLE_SQL, PERSONS_TABLE_SQL
|
|
|
|
operations = [migrations.RunSQL(PERSONS_TABLE_SQL), migrations.RunSQL(PERSONS_DISTINCT_ID_TABLE_SQL)]
|