Skip to content

Commit a710954

Browse files
committed
Update username
1 parent cf8d368 commit a710954

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

backend/trivia.psql

+19-19
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ SET default_tablespace = '';
2121
SET default_with_oids = false;
2222

2323
--
24-
-- Name: categories; Type: TABLE; Schema: public; Owner: caryn
24+
-- Name: categories; Type: TABLE; Schema: public; Owner: student
2525
--
2626

2727
CREATE TABLE public.categories (
@@ -30,10 +30,10 @@ CREATE TABLE public.categories (
3030
);
3131

3232

33-
ALTER TABLE public.categories OWNER TO caryn;
33+
ALTER TABLE public.categories OWNER TO student;
3434

3535
--
36-
-- Name: categories_id_seq; Type: SEQUENCE; Schema: public; Owner: caryn
36+
-- Name: categories_id_seq; Type: SEQUENCE; Schema: public; Owner: student
3737
--
3838

3939
CREATE SEQUENCE public.categories_id_seq
@@ -45,17 +45,17 @@ CREATE SEQUENCE public.categories_id_seq
4545
CACHE 1;
4646

4747

48-
ALTER TABLE public.categories_id_seq OWNER TO caryn;
48+
ALTER TABLE public.categories_id_seq OWNER TO student;
4949

5050
--
51-
-- Name: categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: caryn
51+
-- Name: categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: student
5252
--
5353

5454
ALTER SEQUENCE public.categories_id_seq OWNED BY public.categories.id;
5555

5656

5757
--
58-
-- Name: questions; Type: TABLE; Schema: public; Owner: caryn
58+
-- Name: questions; Type: TABLE; Schema: public; Owner: student
5959
--
6060

6161
CREATE TABLE public.questions (
@@ -67,10 +67,10 @@ CREATE TABLE public.questions (
6767
);
6868

6969

70-
ALTER TABLE public.questions OWNER TO caryn;
70+
ALTER TABLE public.questions OWNER TO student;
7171

7272
--
73-
-- Name: questions_id_seq; Type: SEQUENCE; Schema: public; Owner: caryn
73+
-- Name: questions_id_seq; Type: SEQUENCE; Schema: public; Owner: student
7474
--
7575

7676
CREATE SEQUENCE public.questions_id_seq
@@ -82,31 +82,31 @@ CREATE SEQUENCE public.questions_id_seq
8282
CACHE 1;
8383

8484

85-
ALTER TABLE public.questions_id_seq OWNER TO caryn;
85+
ALTER TABLE public.questions_id_seq OWNER TO student;
8686

8787
--
88-
-- Name: questions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: caryn
88+
-- Name: questions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: student
8989
--
9090

9191
ALTER SEQUENCE public.questions_id_seq OWNED BY public.questions.id;
9292

9393

9494
--
95-
-- Name: categories id; Type: DEFAULT; Schema: public; Owner: caryn
95+
-- Name: categories id; Type: DEFAULT; Schema: public; Owner: student
9696
--
9797

9898
ALTER TABLE ONLY public.categories ALTER COLUMN id SET DEFAULT nextval('public.categories_id_seq'::regclass);
9999

100100

101101
--
102-
-- Name: questions id; Type: DEFAULT; Schema: public; Owner: caryn
102+
-- Name: questions id; Type: DEFAULT; Schema: public; Owner: student
103103
--
104104

105105
ALTER TABLE ONLY public.questions ALTER COLUMN id SET DEFAULT nextval('public.questions_id_seq'::regclass);
106106

107107

108108
--
109-
-- Data for Name: categories; Type: TABLE DATA; Schema: public; Owner: caryn
109+
-- Data for Name: categories; Type: TABLE DATA; Schema: public; Owner: student
110110
--
111111

112112
COPY public.categories (id, type) FROM stdin;
@@ -120,7 +120,7 @@ COPY public.categories (id, type) FROM stdin;
120120

121121

122122
--
123-
-- Data for Name: questions; Type: TABLE DATA; Schema: public; Owner: caryn
123+
-- Data for Name: questions; Type: TABLE DATA; Schema: public; Owner: student
124124
--
125125

126126
COPY public.questions (id, question, answer, difficulty, category) FROM stdin;
@@ -147,37 +147,37 @@ COPY public.questions (id, question, answer, difficulty, category) FROM stdin;
147147

148148

149149
--
150-
-- Name: categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: caryn
150+
-- Name: categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: student
151151
--
152152

153153
SELECT pg_catalog.setval('public.categories_id_seq', 6, true);
154154

155155

156156
--
157-
-- Name: questions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: caryn
157+
-- Name: questions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: student
158158
--
159159

160160
SELECT pg_catalog.setval('public.questions_id_seq', 23, true);
161161

162162

163163
--
164-
-- Name: categories categories_pkey; Type: CONSTRAINT; Schema: public; Owner: caryn
164+
-- Name: categories categories_pkey; Type: CONSTRAINT; Schema: public; Owner: student
165165
--
166166

167167
ALTER TABLE ONLY public.categories
168168
ADD CONSTRAINT categories_pkey PRIMARY KEY (id);
169169

170170

171171
--
172-
-- Name: questions questions_pkey; Type: CONSTRAINT; Schema: public; Owner: caryn
172+
-- Name: questions questions_pkey; Type: CONSTRAINT; Schema: public; Owner: student
173173
--
174174

175175
ALTER TABLE ONLY public.questions
176176
ADD CONSTRAINT questions_pkey PRIMARY KEY (id);
177177

178178

179179
--
180-
-- Name: questions category; Type: FK CONSTRAINT; Schema: public; Owner: caryn
180+
-- Name: questions category; Type: FK CONSTRAINT; Schema: public; Owner: student
181181
--
182182

183183
ALTER TABLE ONLY public.questions

0 commit comments

Comments
 (0)