summaryrefslogtreecommitdiff
path: root/sql/tables/contact.contact_us_posts_read.sql
blob: 80be27c30a91df7926a370b2205a440dc6b8f7c1 (plain)
1
2
3
4
5
6
7
drop table contact.contact_us_posts_read cascade;

create table contact.contact_us_posts_read (
    id serial8 primary key,
    contact_us_post_id bigint not null references contact.contact_us_posts(id),
    user_id bigint not null references auth.users(id)
);