mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 01:48:43 +08:00
17 lines
371 B
Go
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:''"`
|
|
}
|