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

12 lines
181 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:''"`
}