small fix by adding id as pk for FederatedUser

This commit is contained in:
Clemens 2024-02-13 11:09:31 +01:00
parent 086c66b06a
commit db2f896264

View file

@ -8,6 +8,7 @@ import (
)
type FederatedUser struct {
ID int64 `xorm:"pk autoincr"`
UserID int64 `xorm:"NOT NULL"`
ExternalID string `xorm:"TEXT UNIQUE(federation_mapping) NOT NULL"`
FederationHostID int64 `xorm:"UNIQUE(federation_mapping) NOT NULL"`