Small improvements, add migration to fix invalid alert states
This commit is contained in:
parent
badde4a20e
commit
39f79a8f51
|
|
@ -8,6 +8,11 @@
|
|||
|
||||
h2 {
|
||||
flex: 1;
|
||||
font-weight: normal;
|
||||
}
|
||||
}
|
||||
|
||||
.contact-points {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,2 @@
|
|||
UPDATE alerts SET last_status = 'ok' WHERE last_status = 'good';
|
||||
UPDATE alerts SET last_status = 'alert_pending' WHERE last_status = 'pending';
|
||||
Loading…
Reference in New Issue