Skip to content

Commit

Permalink
Fix transactions order
Browse files Browse the repository at this point in the history
  • Loading branch information
artemgavrilov committed Dec 18, 2023
1 parent 0c90f57 commit a04110b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions managed/models/database.go
Original file line number Diff line number Diff line change
Expand Up @@ -949,17 +949,17 @@ var databaseSchema = [][]string{
PRIMARY KEY (dump_id, chunk_id)
)`,
},
100: {
88: {
`DROP TABLE kubernetes_clusters`,
},
101: {
89: {
`DROP TABLE IF EXISTS ia_channels`,
`DROP TABLE IF EXISTS ia_rules`,
`ALTER TABLE ia_templates RENAME TO alert_rule_templates`,
`UPDATE settings SET settings = settings #- '{alerting, email_settings}';`,
`UPDATE settings SET settings = settings #- '{alerting, slack_settings}';`,
},
88: {
90: {
`UPDATE settings SET settings = settings - 'alert_manager_url'`,
},
}
Expand Down

0 comments on commit a04110b

Please sign in to comment.