mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-08-04 20:55:19 +02:00
5 lines
128 B
SQL
5 lines
128 B
SQL
CREATE TABLE IF NOT EXISTS "featuredAdventures" (
|
|
"id" serial PRIMARY KEY NOT NULL,
|
|
"name" text NOT NULL,
|
|
"location" text
|
|
);
|