migrate: replace tinyint with int

Tinyint is not supported on scylla enterprise.
This commit is contained in:
Michał Matczuk
2017-12-20 16:02:17 +01:00
parent cab01c8d25
commit ca0bd49565

View File

@@ -25,7 +25,7 @@ const (
infoSchema = `CREATE TABLE IF NOT EXISTS gocqlx_migrate (
name text,
checksum text,
done tinyint,
done int,
start_time timestamp,
end_time timestamp,
PRIMARY KEY(name)