mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
694 B
15 lines
694 B
package model
|
|
|
|
type DatabaseMysql struct {
|
|
BaseModel
|
|
Name string `json:"name" gorm:"type:varchar(256);not null"`
|
|
From string `json:"from" gorm:"type:varchar(256);not null;default:local"`
|
|
MysqlName string `json:"mysqlName" gorm:"type:varchar(64);not null"`
|
|
Format string `json:"format" gorm:"type:varchar(64);not null"`
|
|
Username string `json:"username" gorm:"type:varchar(256);not null"`
|
|
Password string `json:"password" gorm:"type:varchar(256);not null"`
|
|
Permission string `json:"permission" gorm:"type:varchar(256);not null"`
|
|
IsDelete bool `json:"isDelete" gorm:"type:varchar(64)"`
|
|
Description string `json:"description" gorm:"type:varchar(256);"`
|
|
}
|