mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 23:27:17 +08:00
13 lines
219 B
Go
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:''"`
|
|
}
|