summaryrefslogtreecommitdiff
path: root/sql/tables/general.testimonials.sql
diff options
context:
space:
mode:
authorckonstanski <carlos.konstanski@olo.com>2024-05-25 18:03:25 -0600
committerckonstanski <carlos.konstanski@olo.com>2024-05-25 18:03:25 -0600
commitb8423f4d05c75094b7b9d09c6f0bb353acc9be1c (patch)
tree3732f71f84191b26f038130c2220fb502d738251 /sql/tables/general.testimonials.sql
initial commit
Diffstat (limited to 'sql/tables/general.testimonials.sql')
-rw-r--r--sql/tables/general.testimonials.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/tables/general.testimonials.sql b/sql/tables/general.testimonials.sql
new file mode 100644
index 0000000..64300a6
--- /dev/null
+++ b/sql/tables/general.testimonials.sql
@@ -0,0 +1,6 @@
+drop table general.testimonials cascade;
+
+create table general.testimonials (
+ id serial8 primary key,
+ content text
+);