mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 07:57:21 +08:00
12 lines
183 B
Go
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"`
|
|
}
|