summaryrefslogtreecommitdiff
path: root/sql/tables/contact.contact_us_posts.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql/tables/contact.contact_us_posts.sql')
-rw-r--r--sql/tables/contact.contact_us_posts.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/tables/contact.contact_us_posts.sql b/sql/tables/contact.contact_us_posts.sql
new file mode 100644
index 0000000..5e208cb
--- /dev/null
+++ b/sql/tables/contact.contact_us_posts.sql
@@ -0,0 +1,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
+);