mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 20:57:19 +08:00
14 lines
282 B
Go
14 lines
282 B
Go
package models
|
|
|
|
import (
|
|
"github.com/goravel/framework/database/orm"
|
|
)
|
|
|
|
type Plugin struct {
|
|
orm.Model
|
|
Slug string `gorm:"unique;not null"`
|
|
Version string `gorm:"not null"`
|
|
Show bool `gorm:"default:false;not null"`
|
|
ShowOrder int `gorm:"default:0;not null"`
|
|
}
|