aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema_0018-add_comment_user_to_open311conf.sql
blob: 93851e2a359745392278c4ba2d8664a1b660085b (plain)
1
2
3
4
5
6
begin;

ALTER TABLE open311conf
    ADD COLUMN comment_user_id INT REFERENCES users(id);

commit;