Add migrations and code for sharedAdventures table

This commit is contained in:
Sean Morley
2024-04-02 18:54:09 +00:00
parent 9baab4c675
commit 56a8a45efb
11 changed files with 301 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
CREATE TABLE IF NOT EXISTS "sharedAdventures" (
"id" serial PRIMARY KEY NOT NULL,
"name" text NOT NULL,
"location" text,
"date" text
);