2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 14:57:16 +08:00
Files
panel/app/models/database.go
2023-06-22 00:09:56 +08:00

17 lines
375 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:null"`
Remark string `gorm:"default:null"`
}