updates all cols except created so user and password

of the database can be chaned to no user and password
This commit is contained in:
Maddin-619 2019-02-22 14:19:15 +01:00
parent 425636ff70
commit 09cd173e92

View File

@ -180,7 +180,7 @@ func UpdateDataSource(cmd *m.UpdateDataSourceCommand) error {
updateSession = sess.Where("id=? and org_id=?", ds.Id, ds.OrgId)
}
affected, err := updateSession.Update(ds)
affected, err := updateSession.AllCols().Omit("created").Update(ds)
if err != nil {
return err
}