aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema_0014-add_send_fail_columns_to_problem.sql
blob: 369c4118dcbcb58f93e183993b7e14bc2dad3091 (plain)
1
2
3
4
5
6
7
8
9
10
begin;

ALTER table problem
    ADD column send_fail_count integer not null default 0;
ALTER table problem
    ADD column send_fail_reason text; 
ALTER table problem
    ADD column send_fail_timestamp timestamp;

commit;