summaryrefslogtreecommitdiffstats
path: root/models/migrations
diff options
context:
space:
mode:
authorLauris BH <lauris@nix.lv>2017-12-04 01:14:26 +0200
committerGitHub <noreply@github.com>2017-12-04 01:14:26 +0200
commit5dc37b187c8b839a15ff73758799f218ddeb3bc9 (patch)
treeb63e5ca72c7b9e72c79408ace82dfcba992b5793 /models/migrations
parente59adcde655aac0e8afd3249407c9a0a2b1b1d6b (diff)
downloadgitea-5dc37b187c8b839a15ff73758799f218ddeb3bc9.tar.gz
gitea-5dc37b187c8b839a15ff73758799f218ddeb3bc9.zip
Add reactions to issues/PR and comments (#2856)
Diffstat (limited to 'models/migrations')
-rw-r--r--models/migrations/migrations.go2
-rw-r--r--models/migrations/v50.go28
2 files changed, 30 insertions, 0 deletions
diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go
index bccf6e6924..deded2f755 100644
--- a/models/migrations/migrations.go
+++ b/models/migrations/migrations.go
@@ -148,6 +148,8 @@ var migrations = []Migration{
NewMigration("add repo indexer status", addRepoIndexerStatus),
// v49 -> v50
NewMigration("add lfs lock table", addLFSLock),
+ // v50 -> v51
+ NewMigration("add reactions", addReactions),
}
// Migrate database to current version
diff --git a/models/migrations/v50.go b/models/migrations/v50.go
new file mode 100644
index 0000000000..7437cace25
--- /dev/null
+++ b/models/migrations/v50.go
@@ -0,0 +1,28 @@
+// Copyright 2017 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 addReactions(x *xorm.Engine) error {
+ // Reaction see models/issue_reaction.go
+ type Reaction struct {
+ ID int64 `xorm:"pk autoincr"`
+ Type string `xorm:"INDEX UNIQUE(s) NOT NULL"`
+ IssueID int64 `xorm:"INDEX UNIQUE(s) NOT NULL"`
+ CommentID int64 `xorm:"INDEX UNIQUE(s)"`
+ UserID int64 `xorm:"INDEX UNIQUE(s) NOT NULL"`
+ CreatedUnix int64 `xorm:"INDEX created"`
+ }
+
+ if err := x.Sync2(new(Reaction)); err != nil {
+ return fmt.Errorf("Sync2: %v", err)
+ }
+ return nil
+}