mirror of
https://github.com/wisplite/raster.git
synced 2026-05-01 06:32:44 -05:00
14 lines
289 B
Go
14 lines
289 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type User struct {
|
|
ID string `gorm:"primaryKey"`
|
|
Username string `gorm:"not null"`
|
|
Password string `gorm:"not null"`
|
|
IsAdmin bool `gorm:"not null"`
|
|
IsActive bool `gorm:"not null"`
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|