mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 19:37:18 +08:00
12 lines
181 B
Go
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:''"`
|
|
}
|