diff options
author | Unknown <joe2010xtmf@163.com> | 2014-04-04 18:31:09 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-04-04 18:31:09 -0400 |
commit | eb803ec5eb3a7e66a107873ce6ee584b8c77b131 (patch) | |
tree | 7980b8e04af31123708cf8baa9304fc7df596b3c /models/publickey.go | |
parent | ca5dcea7d15d3564425afbcb65dbea6ab859526f (diff) | |
download | gitea-eb803ec5eb3a7e66a107873ce6ee584b8c77b131.tar.gz gitea-eb803ec5eb3a7e66a107873ce6ee584b8c77b131.zip |
Add transfer repository
Diffstat (limited to 'models/publickey.go')
-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 ed47ff209d..42d2523b5f 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:"unique(s) index not null"` - Name string `xorm:"unique(s) not null"` + OwnerId int64 `xorm:" index not null"` + Name string `xorm:" not null"` //UNIQUE(s) Fingerprint string Content string `xorm:"TEXT not null"` Created time.Time `xorm:"created"` |