19 lines
465 B
Go
19 lines
465 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type SenlinAgentUser struct {
|
|
ID uint `gorm:"primaryKey"`
|
|
Identity string `gorm:"type:char(36);uniqueIndex"`
|
|
Email string `gorm:"uniqueIndex;not null"`
|
|
DisplayName string `gorm:"not null"`
|
|
PasswordHash string `gorm:"not null"`
|
|
Role string `gorm:"not null;default:user"`
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|
|
|
|
func (SenlinAgentUser) TableName() string {
|
|
return "senlin_agent_users"
|
|
}
|