summaryrefslogtreecommitdiff
path: root/sql/tables/contact.contact_us_posts.sql
blob: 5e208cb54995380ad9f1bdaa91d33b1189b720ef (plain)
1
2
3
4
5
6
7
8
9
10
11
drop table contact.contact_us_posts cascade;

create table contact.contact_us_posts (
    id serial8 primary key,
    first_name character varying(255) not null,
    last_name character varying(255) not null,
    email character varying(255) not null,
    phone character varying(255),
    submitted timestamp without time zone not null default now(),
    comments text
);