mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2026-03-25 17:51:23 -04:00
6 lines
128 B
SQL
6 lines
128 B
SQL
CREATE TABLE IF NOT EXISTS "featuredAdventures" (
|
|
"id" serial PRIMARY KEY NOT NULL,
|
|
"name" text NOT NULL,
|
|
"location" text
|
|
);
|