Commit d84d92f7 by Anthony Woods

fixes #1880 correct mysql statement for modifying column data type

parent 380b7f4d
......@@ -53,5 +53,5 @@ func addDashboardSnapshotMigrations(mg *Migrator) {
mg.AddMigration("alter dashboard_snapshot.data to mediumtext v1", new(RawSqlMigration).
Sqlite("SELECT 0 WHERE 0;").
Postgres("SELECT 0;").
Mysql("ALTER TABLE dashboard_snapshot.data MODIFY data MEDIUMTEXT;"))
Mysql("ALTER TABLE dashboard_snapshot MODIFY data MEDIUMTEXT;"))
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment