You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
281 B
11 lines
281 B
3 years ago
|
package model
|
||
|
|
||
|
import "gorm.io/gorm"
|
||
|
|
||
|
type User struct {
|
||
|
gorm.Model
|
||
|
Name string `json:"name";gorm:"type:varchar(20);not null`
|
||
|
Telephone string `json:"telephone";gorm:"type:varchar(11);not null;unique"`
|
||
|
Password string `json:"password";gorm:"type:varchar(20);not null"`
|
||
|
}
|