first for re-cms

This commit is contained in:
2021-08-18 18:41:20 -04:00
parent 6fd0056c89
commit 2afba79e02
17 changed files with 1962 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
DROP TABLE events;
+7
View File
@@ -0,0 +1,7 @@
CREATE TABLE events (
id SERIAL PRIMARY KEY,
title VARCHAR NOT NULL,
text VARCHAR,
location VARCHAR NOT NULL,
event_date DATE
);