mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
e269b37b0e
fix: database cascade settings chore: debug log mode for gorm queries is back
11 lines
368 B
Go
11 lines
368 B
Go
package models
|
|
|
|
type Alias struct {
|
|
ID uint `gorm:"primary_key"`
|
|
Type uint8 `gorm:"not null; index:idx_alias_type_key; constraint:OnUpdate:CASCADE,OnDelete:CASCADE"`
|
|
User *User `json:"-" gorm:"not null"`
|
|
UserID string `gorm:"not null; index:idx_alias_user"`
|
|
Key string `gorm:"not null; index:idx_alias_type_key"`
|
|
Value string `gorm:"not null"`
|
|
}
|