Commit 3f96afba by Torkel Ödegaard

Merge branch 'fixDashboardDelete' of https://github.com/raintank/grafana into…

Merge branch 'fixDashboardDelete' of https://github.com/raintank/grafana into raintank-fixDashboardDelete

Conflicts:
	pkg/services/sqlstore/dashboard.go
parents 9e789e6d b9b63f69
......@@ -171,7 +171,7 @@ func DeleteDashboard(cmd *m.DeleteDashboardCommand) error {
sess := x.NewSession()
defer sess.Close()
rawSql := "DELETE FROM Dashboard WHERE org_id=? and slug=?"
rawSql := "DELETE FROM dashboard WHERE org_id=? and slug=?"
_, err := sess.Exec(rawSql, cmd.OrgId, cmd.Slug)
return err
......
Markdown is supported
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