2019-12-02 13:32:40 -05:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package migrations
|
|
|
|
|
|
|
|
import (
|
|
|
|
"xorm.io/xorm"
|
2020-03-22 11:12:55 -04:00
|
|
|
"xorm.io/xorm/schemas"
|
2019-12-02 13:32:40 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func changeReviewContentToText(x *xorm.Engine) error {
|
2020-03-22 11:12:55 -04:00
|
|
|
switch x.Dialect().URI().DBType {
|
|
|
|
case schemas.MYSQL:
|
2019-12-02 13:32:40 -05:00
|
|
|
_, err := x.Exec("ALTER TABLE review MODIFY COLUMN content TEXT")
|
|
|
|
return err
|
2020-03-22 11:12:55 -04:00
|
|
|
case schemas.ORACLE:
|
2019-12-02 13:32:40 -05:00
|
|
|
_, err := x.Exec("ALTER TABLE review MODIFY content TEXT")
|
|
|
|
return err
|
2020-03-22 11:12:55 -04:00
|
|
|
case schemas.MSSQL:
|
2019-12-02 13:32:40 -05:00
|
|
|
_, err := x.Exec("ALTER TABLE review ALTER COLUMN content TEXT")
|
|
|
|
return err
|
2020-03-22 11:12:55 -04:00
|
|
|
case schemas.POSTGRES:
|
2019-12-02 13:32:40 -05:00
|
|
|
_, err := x.Exec("ALTER TABLE review ALTER COLUMN content TYPE TEXT")
|
|
|
|
return err
|
2020-03-22 11:12:55 -04: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 13:32:40 -05:00
|
|
|
}
|
|
|
|
}
|