-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Increase size of the language column in language_stat
In #12379 it was discovered that enry v2 has a maximum language length of 34 characters which is larger than the 30 previously provided. This PR updates the language column to 50. Fix #12379 Signed-off-by: Andrew Thornton <art27@cantab.net>
- Loading branch information
Showing
3 changed files
with
61 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
// Copyright 2020 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 ( | ||
"fmt" | ||
|
||
"code.gitea.io/gitea/modules/setting" | ||
"xorm.io/xorm" | ||
) | ||
|
||
func increaseLanguageField(x *xorm.Engine) error { | ||
type LanguageStat struct { | ||
Language string `xorm:"VARCHAR(50) UNIQUE(s) INDEX NOT NULL"` | ||
} | ||
|
||
if err := x.Sync2(new(LanguageStat)); err != nil { | ||
return err | ||
} | ||
|
||
if setting.Database.UseSQLite3 { | ||
// SQLite maps VARCHAR to TEXT without size so we're done | ||
return nil | ||
} | ||
|
||
// need to get the correct type for the new column | ||
inferredTable, err := x.TableInfo(new(LanguageStat)) | ||
if err != nil { | ||
return err | ||
} | ||
column := inferredTable.GetColumn("language") | ||
sqlType := x.Dialect().SQLType(column) | ||
|
||
sess := x.NewSession() | ||
defer sess.Close() | ||
if err := sess.Begin(); err != nil { | ||
return err | ||
} | ||
|
||
switch { | ||
case setting.Database.UseMySQL: | ||
if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE language_stat MODIFY COLUMN language %s", sqlType)); err != nil { | ||
return err | ||
} | ||
case setting.Database.UseMSSQL: | ||
if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE language_stat ALTER COLUMN language %s", sqlType)); err != nil { | ||
return err | ||
} | ||
case setting.Database.UsePostgreSQL: | ||
if _, err := sess.Exec(fmt.Sprintf("ALTER TABLE language_stat ALTER COLUMN language %s", sqlType)); err != nil { | ||
return err | ||
} | ||
} | ||
|
||
return sess.Commit() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters