mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2025-02-21 18:50:34 +03:00
9 lines
363 B
Python
9 lines
363 B
Python
|
from infi.clickhouse_orm import migrations
|
||
|
|
||
|
operations = [
|
||
|
migrations.RunSQL("INSERT INTO `mig` (date, f1, f3, f4) VALUES ('2016-01-01', 1, 1, 'test') "),
|
||
|
migrations.RunSQL([
|
||
|
"INSERT INTO `mig` (date, f1, f3, f4) VALUES ('2016-01-02', 2, 2, 'test2') ",
|
||
|
"INSERT INTO `mig` (date, f1, f3, f4) VALUES ('2016-01-03', 3, 3, 'test3') ",
|
||
|
])
|
||
|
]
|