Merge pull request #631 from bradrydzewski/master

altered mysql to use `mediumblob` instead of `blob` to avoid 64k limit
This commit is contained in:
Brad Rydzewski 2014-10-26 10:21:34 -07:00
commit 275fb9600c

View file

@ -13,6 +13,7 @@ func transform(stmt string) string {
switch meddler.Default {
case meddler.MySQL:
stmt = strings.Replace(stmt, "AUTOINCREMENT", "AUTO_INCREMENT", -1)
stmt = strings.Replace(stmt, "BLOB", "MEDIUMBLOB", -1)
case meddler.PostgreSQL:
stmt = strings.Replace(stmt, "INTEGER PRIMARY KEY AUTOINCREMENT", "SERIAL PRIMARY KEY", -1)
stmt = strings.Replace(stmt, "BLOB", "BYTEA", -1)