mirror of
https://github.com/go-gitea/gitea.git
synced 2025-06-22 22:18:02 +02:00
fix gpg wrong column types
This commit is contained in:

committed by
Kim "BKC" Carlbäcker

parent
430cc4f42a
commit
608cd54a68
@ -20,8 +20,8 @@ import (
|
||||
type GPGKey struct {
|
||||
ID int64 `xorm:"pk autoincr"`
|
||||
OwnerID int64 `xorm:"INDEX NOT NULL"`
|
||||
KeyID string `xorm:"INDEX TEXT NOT NULL"`
|
||||
PrimaryKeyID string `xorm:"TEXT"`
|
||||
KeyID string `xorm:"INDEX CHAR(16) NOT NULL"`
|
||||
PrimaryKeyID string `xorm:"CHAR(16)"`
|
||||
Content string `xorm:"TEXT NOT NULL"`
|
||||
Created time.Time `xorm:"-"`
|
||||
CreatedUnix int64
|
||||
|
Reference in New Issue
Block a user