13 lines
534 B
Go
13 lines
534 B
Go
package models
|
|
|
|
type User struct {
|
|
Id uint `gorm:"primary key" json:"id"`
|
|
Name string `gorm:"size:40;not null" json:"name"`
|
|
Email string `gorm:"size:40;not null;unique" json:"email"`
|
|
Password []byte `gorm:"size:100;not null;" json:"-"`
|
|
UserType string `gorm:"size:1;not null;default:U" json:"usertype"`
|
|
Blocked string `gorm:"size:1;not null;default:N" json:"blocked"`
|
|
First string `gorm:"size:1;not null;default:S" json:"first"`
|
|
Cancelled string `gorm:"size:1;not null;default:N" json:"cancelled"`
|
|
}
|