summaryrefslogtreecommitdiffstats
path: root/db/old_migrations/patch-http-monitor-method-body-and-headers.sql
blob: dc2526b4fbc23e1b59a0f90c2804b39b8d018d37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- You should not modify if this have pushed to Github, unless it does serious wrong with the db.
BEGIN TRANSACTION;

ALTER TABLE monitor
    ADD method TEXT default 'GET' not null;

ALTER TABLE monitor
    ADD body TEXT default null;

ALTER TABLE monitor
    ADD headers TEXT default null;

COMMIT;