2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-05 02:07:18 +08:00
Files
panel/app/models/user.go
2023-06-22 16:51:37 +08:00

13 lines
219 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:''"`
}