【新增】租户功能

This commit is contained in:
PandaGoAdmin
2022-07-14 18:01:54 +08:00
parent bcebb5024e
commit a6c5e581e3
8 changed files with 261 additions and 10 deletions

View File

@@ -29,5 +29,5 @@ type Postgresql struct {
}
func (m *Postgresql) PgDsn() string {
return fmt.Sprintf("host=%s port=%d user=%s"+" password=%s dbname=%s sslmode=disable", m.Host, m.Port, m.Username, m.Password, m.Dbname)
return fmt.Sprintf("host=%s port=%d user=%s password=%s dbname=%s sslmode=disable", m.Host, m.Port, m.Username, m.Password, m.Dbname)
}