summaryrefslogtreecommitdiffstats
path: root/models/migrations
diff options
context:
space:
mode:
authorkolaente <konrad@kola-entertainments.de>2018-05-05 02:28:30 +0200
committerLunny Xiao <xiaolunwen@gmail.com>2018-05-05 08:28:30 +0800
commit1fdf5606785e4a45da7b301b40229a4335a0473c (patch)
treef018a866607c1e84c8ea0f0d62af905ca8cee9a7 /models/migrations
parent795dcc8ecf635aedeec848336c293189d3996605 (diff)
downloadgitea-1fdf5606785e4a45da7b301b40229a4335a0473c.tar.gz
gitea-1fdf5606785e4a45da7b301b40229a4335a0473c.zip
Added user language setting (#3875)
* Added user language setting * Added translation string for setting * Fixed import order + typo * improved checking if the user has a language saved in the db * The current saved language is now set a default inside the dropdown * fmt * When a user signs in and doesn't have a language saved, the current browser language is saved * updated gitea-sdk * Merge branch 'master' of https://github.com/go-gitea/gitea into save-user-language # Conflicts: # models/migrations/migrations.go # models/migrations/v62.go * Made tests work again * trigger CI * trigger CI * fmt * re-trigger that FUCKING CI SO IT REALLY PICKS UP THE LATEST COMMIT ISTEAD OF PREDENDING TO DO SO * re-trigger that FUCKING CI SO IT REALLY PICKS UP THE LATEST COMMIT ISTEAD OF PREDENDING TO DO SO * When loggin in, only the language col gets updated instead of everything
Diffstat (limited to 'models/migrations')
-rw-r--r--models/migrations/migrations.go2
-rw-r--r--models/migrations/v63.go23
2 files changed, 25 insertions, 0 deletions
diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go
index 522086a520..aa9dd13107 100644
--- a/models/migrations/migrations.go
+++ b/models/migrations/migrations.go
@@ -178,6 +178,8 @@ var migrations = []Migration{
NewMigration("add size column for attachments", addSizeToAttachment),
// v62 -> v63
NewMigration("add last used passcode column for TOTP", addLastUsedPasscodeTOTP),
+ // v63 -> v64
+ NewMigration("add language column for user setting", addLanguageSetting),
}
// Migrate database to current version
diff --git a/models/migrations/v63.go b/models/migrations/v63.go
new file mode 100644
index 0000000000..6e7d940edc
--- /dev/null
+++ b/models/migrations/v63.go
@@ -0,0 +1,23 @@
+// Copyright 2018 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"
+
+ "github.com/go-xorm/xorm"
+)
+
+func addLanguageSetting(x *xorm.Engine) error {
+ type User struct {
+ Language string `xorm:"VARCHAR(5)"`
+ }
+
+ if err := x.Sync2(new(User)); err != nil {
+ return fmt.Errorf("Sync2: %v", err)
+ }
+
+ return nil
+}