aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema_0031-add_url_to_body.sql
blob: 7aaa78c64a736c8852cc30c0e0179744283c65a2 (plain)
1
2
3
4
5
6
7
8
9
BEGIN;

-- `external_url' includes an URL for reporting problems to the body directly.
-- It can be displayed in the new report form when no contacts are set; see
-- templates/web/fixamingata/report/new/councils_text_none.html for an example.

ALTER TABLE body ADD external_url TEXT;

COMMIT;