updates all cols except created so user and password

of the database can be chaned to no user and password
pull/15608/head
Maddin-619 7 years ago
parent 425636ff70
commit 09cd173e92
  1. 2
      pkg/services/sqlstore/datasource.go

@ -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
}

Loading…
Cancel
Save