Skip to content

Commit 1e47e2d

Browse files
committed
quick fix
1 parent 5d9ef2b commit 1e47e2d

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ The goal of this project is to make the easiest, fastest and most painless way t
4444
- Mail service(register, issue)
4545
- Administration panel
4646
- Slack webhook integration
47+
- Drone CI integration
4748
- Supports MySQL, PostgreSQL and SQLite3
4849
- Social account login(GitHub, Google, QQ, Weibo)
4950
- Multi-language support(English, Simplified Chinese, Traditional Chinese, Germany, French, Dutch, and [more](https://crowdin.com/project/gogs))

README_ZH.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ Gogs 的目标是打造一个最简单、最快速和最轻松的方式搭建自
3535
- 支持邮件服务(注册、Issue)
3636
- 管理员面板
3737
- Slack Web 钩子集成
38+
- Drone CI 持续部署集成
3839
- 支持 MySQL、PostgreSQL 以及 SQLite3 数据库
3940
- 社交帐号登录(GitHub、Google、QQ、微博)
4041
- 多语言支持(英文、简体中文、繁体中文、德语、法语、荷兰语以及 [更多]([more](https://crowdin.com/project/gogs))

models/publickey.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ type PublicKey struct {
8181
Id int64
8282
OwnerId int64 `xorm:"UNIQUE(s) INDEX NOT NULL"`
8383
Name string `xorm:"UNIQUE(s) NOT NULL"`
84-
Fingerprint string `xorm:"UNIQUE NOT NULL"`
84+
Fingerprint string `xorm:"INDEX NOT NULL"`
8585
Content string `xorm:"TEXT NOT NULL"`
8686
Created time.Time `xorm:"CREATED"`
8787
Updated time.Time

0 commit comments

Comments
 (0)