-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmigrations_and_seeds.txt
57 lines (47 loc) · 1.46 KB
/
migrations_and_seeds.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
--
-- PostgreSQL database dump
--
-- Dumped from database version 9.5.4
-- Dumped by pg_dump version 9.5.4
--
-- Name: attendees; Type: TABLE; Schema: public; Owner: developdenver
--
CREATE TABLE attendees (
id serial,
name text,
title text
);
--
-- Name: talk_submissions; Type: TABLE; Schema: public; Owner: developdenver
--
CREATE TABLE talk_submissions (
id serial,
title text,
attendee_id integer
);
--
-- Data for Name: attendees; Type: TABLE DATA; Schema: public; Owner: developdenver
--
INSERT INTO attendees (id, name, title) VALUES
(1, "Cassandra Torske", "Software Developer and Educator"),
(2, "Ken Lee", "Frontend Developer"),
(3, "Michael Dusing", "UX Designer"),
(4, "Steve Ham", "JavaScript/PHP dev"),
(5, "Catherine Schlesinger", "Devops Engineer");
--
-- Data for Name: talk_submissions; Type: TABLE DATA; Schema: public; Owner: developdenver
--
INSERT INTO talk_submissions (id, title, attendee_id) VALUES
(1, "UI Design for VR", 1),
(2, "Divide and Conquer With Micro Frontends", 2),
(3, "Covered Bridges: Using your social capital to make a difference", 3),
(4, "Three things I wish I'd known when I was a new developer", 4),
(5, "Visual Testing with Cypress", 5),
(6, "React Hooks: The what, why, and how", 4),
(7, "Writing ES6 Modules you can test", 3),
(8, "Mind the Gap: Improving Diversity in Tech", 3),
(9, "UX Principles to Grow Your Career", 1),
(10, "Networking for Introverts", 2);
--
-- PostgreSQL database dump complete
--