Skip to content

Commit

Permalink
job_board schema
Browse files Browse the repository at this point in the history
Fields as detailed in issue #15
  • Loading branch information
Charlotte Brandhorst-Satzkorn committed Dec 22, 2020
1 parent 2206971 commit 8a085ad
Showing 1 changed file with 93 additions and 0 deletions.
93 changes: 93 additions & 0 deletions conferences/migrations/10_add_job_board.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
BEGIN;

CREATE TABLE job_board(
id SERIAL PRIMARY KEY,
company_name TEXT NOT NULL,
title TEXT NOT NULL,
description TEXT NOT NULL,
link TEXT NOT NULL,
discord TEXT NOT NULL,
rank INT NOT NULL
);

INSERT INTO job_board(
company_name,
title,
description,
link,
discord,
rank
) VALUES (
"Skynet",
"T1000 Engineer",
"Assisting the robot takeover",
"https://skynet.io/terminator",
"https://discord.gg/termi-time"
1
);

INSERT INTO job_board(
company_name,
title,
description,
link,
discord,
rank
) VALUES (
"Pandora Mining Corp",
"Avatar Driver",
"Gaining insight into Pandoras other species",
"https://pandominer.org/jobs",
"https://discord.gg/pandora"
2
);

INSERT INTO job_board(
company_name,
title,
description,
link,
discord,
rank
) VALUES (
"DC Red Project",
"Customer Refund Assistant",
"Assist customers to recieve their refunds",
"https://syberfunk.gg",
"https://discord.gg/woops"
3
);

INSERT INTO job_board(
company_name,
title,
description,
link,
discord,
rank
) VALUES (
"Slowly",
"Software Engineer",
"Slow development styles are a must",
"https://syberfunk.gg",
"https://discord.gg/slowly"
4
);

INSERT INTO job_board(
company_name,
title,
description,
link,
discord,
rank
) VALUES (
"gopheRPC",
"Full-time Pancakes walker",
"Looking for a energetic gopher to support pancakes",
"https://gopheRPC.gg/pancakes-job",
"https://discord.gg/gopheRC",
5
);

COMMIT;

0 comments on commit 8a085ad

Please sign in to comment.