diff options
author | skyblue <ssx205@gmail.com> | 2014-04-05 22:53:17 +0800 |
---|---|---|
committer | skyblue <ssx205@gmail.com> | 2014-04-05 22:53:17 +0800 |
commit | 1336d8d54d38736eaff7574af4002a60a1e153c2 (patch) | |
tree | 4ed389c69842158fc2ffd0b83e70f21ecdc347c7 /models | |
parent | c22d3503fd65ec95fd215b395be059392bf90d87 (diff) | |
parent | 9791e70da67091d244728070b80ee92c98d6aa8b (diff) | |
download | gitea-1336d8d54d38736eaff7574af4002a60a1e153c2.tar.gz gitea-1336d8d54d38736eaff7574af4002a60a1e153c2.zip |
Merge branches 'dev' and 'dev' of github.com:gogits/gogs into dev
Diffstat (limited to 'models')
-rw-r--r-- | models/publickey.go | 4 |
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"` |