aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema_0016-add_whensent_and_send_fail_to_comment.sql
blob: 792ff2e3895cfb5af70b3a58da8a15002283128a (plain)
1
2
3
4
5
6
7
8
9
10
11
begin;

ALTER table comment
    ADD column send_fail_count integer not null default 0;
ALTER table comment
    ADD column send_fail_reason text;
ALTER table comment
    ADD column send_fail_timestamp timestamp;
ALTER table comment
    ADD column whensent timestamp;
commit;