2019-12-03 00:02:40 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2019-12-03 00:02:40 +05:30
|
|
|
|
2022-11-02 14:24:36 +05:30
|
|
|
package v1_11 //nolint
|
2019-12-03 00:02:40 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
"xorm.io/xorm"
|
2020-03-22 20:42:55 +05:30
|
|
|
"xorm.io/xorm/schemas"
|
2019-12-03 00:02:40 +05:30
|
|
|
)
|
|
|
|
|
2022-11-02 14:24:36 +05:30
|
|
|
func ChangeReviewContentToText(x *xorm.Engine) error {
|
2020-03-22 20:42:55 +05:30
|
|
|
switch x.Dialect().URI().DBType {
|
|
|
|
case schemas.MYSQL:
|
2019-12-03 00:02:40 +05:30
|
|
|
_, err := x.Exec("ALTER TABLE review MODIFY COLUMN content TEXT")
|
|
|
|
return err
|
2020-03-22 20:42:55 +05:30
|
|
|
case schemas.ORACLE:
|
2019-12-03 00:02:40 +05:30
|
|
|
_, err := x.Exec("ALTER TABLE review MODIFY content TEXT")
|
|
|
|
return err
|
2020-03-22 20:42:55 +05:30
|
|
|
case schemas.MSSQL:
|
2019-12-03 00:02:40 +05:30
|
|
|
_, err := x.Exec("ALTER TABLE review ALTER COLUMN content TEXT")
|
|
|
|
return err
|
2020-03-22 20:42:55 +05:30
|
|
|
case schemas.POSTGRES:
|
2019-12-03 00:02:40 +05:30
|
|
|
_, err := x.Exec("ALTER TABLE review ALTER COLUMN content TYPE TEXT")
|
|
|
|
return err
|
2020-03-22 20:42:55 +05:30
|
|
|
default:
|
|
|
|
// SQLite doesn't support ALTER COLUMN, and it seem to already make String to _TEXT_ default so no migration needed
|
|
|
|
return nil
|
2019-12-03 00:02:40 +05:30
|
|
|
}
|
|
|
|
}
|