-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |