Merge pull request #145 from bobrovde/fix-clickhouse

Changed clickhouse migrations table struct
This commit is contained in:
Dale Hui 2018-12-30 13:42:39 -08:00 committed by GitHub
commit fd50054781
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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