mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 04:11:03 +00:00
altered mysql code to use mediumblob
instead of blob
to avoid 64k limit
This commit is contained in:
parent
1fd1c5e292
commit
cbd5ef2874
1 changed files with 1 additions and 0 deletions
|
@ -13,6 +13,7 @@ func transform(stmt string) string {
|
||||||
switch meddler.Default {
|
switch meddler.Default {
|
||||||
case meddler.MySQL:
|
case meddler.MySQL:
|
||||||
stmt = strings.Replace(stmt, "AUTOINCREMENT", "AUTO_INCREMENT", -1)
|
stmt = strings.Replace(stmt, "AUTOINCREMENT", "AUTO_INCREMENT", -1)
|
||||||
|
stmt = strings.Replace(stmt, "BLOB", "MEDIUMBLOB", -1)
|
||||||
case meddler.PostgreSQL:
|
case meddler.PostgreSQL:
|
||||||
stmt = strings.Replace(stmt, "INTEGER PRIMARY KEY AUTOINCREMENT", "SERIAL PRIMARY KEY", -1)
|
stmt = strings.Replace(stmt, "INTEGER PRIMARY KEY AUTOINCREMENT", "SERIAL PRIMARY KEY", -1)
|
||||||
stmt = strings.Replace(stmt, "BLOB", "BYTEA", -1)
|
stmt = strings.Replace(stmt, "BLOB", "BYTEA", -1)
|
||||||
|
|
Loading…
Reference in a new issue