diff options
author | 无闻 <joe2010xtmf@163.com> | 2014-04-02 16:17:25 -0400 |
---|---|---|
committer | 无闻 <joe2010xtmf@163.com> | 2014-04-02 16:17:25 -0400 |
commit | b9a7dd72f84213836edc242c3a2ccc482a970ee5 (patch) | |
tree | dcca0e6bca1741f10c054b1b4f813b3b6cc3de07 | |
parent | 272c27c8f20b20889571ed640538c6564beb62ed (diff) | |
parent | 4586c386e7fb41e3f7b673a120d661399703af87 (diff) | |
download | gitea-b9a7dd72f84213836edc242c3a2ccc482a970ee5.tar.gz gitea-b9a7dd72f84213836edc242c3a2ccc482a970ee5.zip |
Merge pull request #55 from MartinGarton/master
fix unique
-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 3f2fcabd3b..ed47ff209d 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"` - Name string `xorm:"unique not null"` + OwnerId int64 `xorm:"unique(s) index not null"` + Name string `xorm:"unique(s) not null"` Fingerprint string Content string `xorm:"TEXT not null"` Created time.Time `xorm:"created"` |