Commit dab4bd07 authored by 凡羊羊's avatar 凡羊羊
Browse files

[FIX] fix issue(#338) bug, modify tenant service env max size to 1024

Showing with 6 additions and 1 deletion
+6 -1
......@@ -165,4 +165,9 @@ func (m *Manager) CheckTable() {
})
}
func (m *Manager) patchTable() {}
func (m *Manager) patchTable() {
//modify tenant service env max size to 1024
if err := m.db.Exec("alter table tenant_services_envs modify column attr_value varchar(1024);").Error; err != nil {
logrus.Errorf("alter table tenant_services_envs error %s", err.Error())
}
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment