mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 11:27:17 +08:00
14 lines
238 B
Go
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
|
|
}
|