2019-12-02 18:32:40 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-12-02 18:32:40 +00:00
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
package v1_11 //nolint
|
2019-12-02 18:32:40 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"xorm.io/xorm"
|
2020-03-22 15:12:55 +00:00
|
|
|
"xorm.io/xorm/schemas"
|
2019-12-02 18:32:40 +00:00
|
|
|
)
|
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
func ChangeReviewContentToText(x *xorm.Engine) error {
|
2020-03-22 15:12:55 +00:00
|
|
|
switch x.Dialect().URI().DBType {
|
|
|
|
case schemas.MYSQL:
|
2019-12-02 18:32:40 +00:00
|
|
|
_, err := x.Exec("ALTER TABLE review MODIFY COLUMN content TEXT")
|
|
|
|
return err
|
2020-03-22 15:12:55 +00:00
|
|
|
case schemas.ORACLE:
|
2019-12-02 18:32:40 +00:00
|
|
|
_, err := x.Exec("ALTER TABLE review MODIFY content TEXT")
|
|
|
|
return err
|
2020-03-22 15:12:55 +00:00
|
|
|
case schemas.POSTGRES:
|
2019-12-02 18:32:40 +00:00
|
|
|
_, err := x.Exec("ALTER TABLE review ALTER COLUMN content TYPE TEXT")
|
|
|
|
return err
|
2020-03-22 15:12:55 +00:00
|
|
|
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-02 18:32:40 +00:00
|
|
|
}
|
|
|
|
}
|