mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-25 15:59:38 +02:00
6 lines
128 B
MySQL
6 lines
128 B
MySQL
|
CREATE TABLE IF NOT EXISTS "featuredAdventures" (
|
||
|
"id" serial PRIMARY KEY NOT NULL,
|
||
|
"name" text NOT NULL,
|
||
|
"location" text
|
||
|
);
|