mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-28 05:15:04 +08:00
0f9b0d5d82
Refs #4165
15 lines
720 B
Go
15 lines
720 B
Go
package model
|
|
|
|
type DatabasePostgresql struct {
|
|
BaseModel
|
|
Name string `json:"name" gorm:"type:varchar(256);not null"`
|
|
From string `json:"from" gorm:"type:varchar(256);not null;default:local"`
|
|
PostgresqlName string `json:"postgresqlName" 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"`
|
|
SuperUser bool `json:"superUser" gorm:"type:varchar(64)"`
|
|
IsDelete bool `json:"isDelete" gorm:"type:varchar(64)"`
|
|
Description string `json:"description" gorm:"type:varchar(256);"`
|
|
}
|