2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 11:27:17 +08:00
Files
panel/app/models/user.go
2023-06-22 00:09:56 +08:00

14 lines
238 B
Go

package models
import (
"github.com/goravel/framework/database/orm"
)
type User struct {
orm.Model
Username string `gorm:"unique;not null"`
Password string `gorm:"not null"`
Email string `gorm:"default:null"`
orm.SoftDeletes
}