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

17 lines
371 B
Go

package models
import (
"github.com/goravel/framework/database/orm"
)
type Database struct {
orm.Model
Name string `gorm:"unique;not null"`
Type string `gorm:"not null;index"`
Host string `gorm:"not null"`
Port int `gorm:"not null"`
Username string `gorm:"not null"`
Password string `gorm:"default:''"`
Remark string `gorm:"default:''"`
}