small fix by adding id as pk for FederatedUser
This commit is contained in:
parent
086c66b06a
commit
db2f896264
1 changed files with 1 additions and 0 deletions
|
@ -8,6 +8,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
type FederatedUser struct {
|
type FederatedUser struct {
|
||||||
|
ID int64 `xorm:"pk autoincr"`
|
||||||
UserID int64 `xorm:"NOT NULL"`
|
UserID int64 `xorm:"NOT NULL"`
|
||||||
ExternalID string `xorm:"TEXT UNIQUE(federation_mapping) NOT NULL"`
|
ExternalID string `xorm:"TEXT UNIQUE(federation_mapping) NOT NULL"`
|
||||||
FederationHostID int64 `xorm:"UNIQUE(federation_mapping) NOT NULL"`
|
FederationHostID int64 `xorm:"UNIQUE(federation_mapping) NOT NULL"`
|
||||||
|
|
Loading…
Add table
Reference in a new issue