diff --git a/database/clickhouse/clickhouse.go b/database/clickhouse/clickhouse.go index c94ba72..6f98bd1 100644 --- a/database/clickhouse/clickhouse.go +++ b/database/clickhouse/clickhouse.go @@ -175,7 +175,7 @@ func (ch *ClickHouse) ensureVersionTable() error { // if not, create the empty migration table query = ` CREATE TABLE ` + ch.config.MigrationsTable + ` ( - version UInt32, + version Int64, dirty UInt8, sequence UInt64 ) Engine=TinyLog