2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 07:57:21 +08:00
Files
panel/app/models/setting.go
2023-06-22 00:09:56 +08:00

12 lines
183 B
Go

package models
import (
"github.com/goravel/framework/database/orm"
)
type Setting struct {
orm.Model
Key string `gorm:"unique;not null"`
Value string `gorm:"default:null"`
}