aboutsummaryrefslogtreecommitdiffstats
path: root/models/publickey.go
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2014-04-05 22:24:10 +0800
committerLunny Xiao <xiaolunwen@gmail.com>2014-04-05 22:24:10 +0800
commit9791e70da67091d244728070b80ee92c98d6aa8b (patch)
treef652664ba55ff61c20b27bafa41e2d6effd323ef /models/publickey.go
parenta92826a8feee904440d86fd851ac4ecce35520fd (diff)
downloadgitea-9791e70da67091d244728070b80ee92c98d6aa8b.tar.gz
gitea-9791e70da67091d244728070b80ee92c98d6aa8b.zip
bug fixed
Diffstat (limited to 'models/publickey.go')
-rw-r--r--models/publickey.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/models/publickey.go b/models/publickey.go
index 42d2523b5f..426e6b0be7 100644
--- a/models/publickey.go
+++ b/models/publickey.go
@@ -77,8 +77,8 @@ func init() {
// PublicKey represents a SSH key of user.
type PublicKey struct {
Id int64
- OwnerId int64 `xorm:" index not null"`
- Name string `xorm:" not null"` //UNIQUE(s)
+ OwnerId int64 `xorm:"unique(s) index not null"`
+ Name string `xorm:"unique(s) not null"` //UNIQUE(s)
Fingerprint string
Content string `xorm:"TEXT not null"`
Created time.Time `xorm:"created"`