aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema_0037-response-templates.sql
blob: 4534e1e847a25b04d5546df9a793c13f246978cd (plain)
1
2
3
4
5
6
7
8
create table response_templates (
    id serial not null primary key,
    body_id int references body(id) not null,
    title text not null,
    text text not null,
    created timestamp not null default current_timestamp,
    unique(body_id, title)
);