forked from CodeYourFuture/Full-Stack-Project-Assessment
-
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.
Merge pull request #13 from adniyaYousaf/database-setup
Successfully setup the database
- Loading branch information
Showing
2 changed files
with
136 additions
and
6 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
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,56 @@ | ||
-- | ||
-- PostgreSQL database dump | ||
-- | ||
|
||
-- Dumped from database version 14.11 (Ubuntu 14.11-0ubuntu0.22.04.1) | ||
-- Dumped by pg_dump version 14.11 (Ubuntu 14.11-0ubuntu0.22.04.1) | ||
|
||
SET statement_timeout = 0; | ||
SET lock_timeout = 0; | ||
SET idle_in_transaction_session_timeout = 0; | ||
SET client_encoding = 'UTF8'; | ||
SET standard_conforming_strings = on; | ||
SELECT pg_catalog.set_config('search_path', '', false); | ||
SET check_function_bodies = false; | ||
SET xmloption = content; | ||
SET client_min_messages = warning; | ||
SET row_security = off; | ||
|
||
SET default_tablespace = ''; | ||
|
||
SET default_table_access_method = heap; | ||
|
||
-- | ||
-- Name: videos; Type: TABLE; Schema: public; Owner: adniya | ||
-- | ||
|
||
CREATE TABLE public.videos ( | ||
title character varying, | ||
src character varying | ||
); | ||
|
||
|
||
ALTER TABLE public.videos OWNER TO adniya; | ||
|
||
-- | ||
-- Data for Name: videos; Type: TABLE DATA; Schema: public; Owner: adniya | ||
-- | ||
|
||
COPY public.videos (title, src) FROM stdin; | ||
Never Gonna Give You Up https://www.youtube.com/watch?v=dQw4w9WgXcQ | ||
The Coding Train https://www.youtube.com/watch?v=HerCR8bw_GE | ||
Mac & Cheese | Basics with Babish https://www.youtube.com/watch?v=FUeyrEN14Rk | ||
Videos for Cats to Watch - 8 Hour Bird Bonanza https://www.youtube.com/watch?v=xbs7FT7dXYc | ||
The Complete London 2012 Opening Ceremony | London 2012 Olympic Games https://www.youtube.com/watch?v=4As0e4de-rI | ||
Learn Unity - Beginner's Game Development Course https://www.youtube.com/watch?v=gB1F9G0JXOo | ||
Cracking Enigma in 2021 - Computerphile https://www.youtube.com/watch?v=RzWB5jL5RX0 | ||
Coding Adventure: Chess AI https://www.youtube.com/watch?v=U4ogK0MIzqk | ||
Why the Tour de France is so brutal https://www.youtube.com/watch?v=ZacOS8NBK6U | ||
Coding Adventure: Ant and Slime Simulations https://www.youtube.com/watch?v=X-iSQQgOd1A | ||
\. | ||
|
||
|
||
-- | ||
-- PostgreSQL database dump complete | ||
-- | ||
|