@@ -21,7 +21,7 @@ SET default_tablespace = '';
21
21
SET default_with_oids = false;
22
22
23
23
--
24
- -- Name: categories; Type: TABLE; Schema: public; Owner: caryn
24
+ -- Name: categories; Type: TABLE; Schema: public; Owner: student
25
25
--
26
26
27
27
CREATE TABLE public.categories (
@@ -30,10 +30,10 @@ CREATE TABLE public.categories (
30
30
);
31
31
32
32
33
- ALTER TABLE public.categories OWNER TO caryn ;
33
+ ALTER TABLE public.categories OWNER TO student ;
34
34
35
35
--
36
- -- Name: categories_id_seq; Type: SEQUENCE; Schema: public; Owner: caryn
36
+ -- Name: categories_id_seq; Type: SEQUENCE; Schema: public; Owner: student
37
37
--
38
38
39
39
CREATE SEQUENCE public.categories_id_seq
@@ -45,17 +45,17 @@ CREATE SEQUENCE public.categories_id_seq
45
45
CACHE 1;
46
46
47
47
48
- ALTER TABLE public.categories_id_seq OWNER TO caryn ;
48
+ ALTER TABLE public.categories_id_seq OWNER TO student ;
49
49
50
50
--
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
52
52
--
53
53
54
54
ALTER SEQUENCE public.categories_id_seq OWNED BY public.categories.id;
55
55
56
56
57
57
--
58
- -- Name: questions; Type: TABLE; Schema: public; Owner: caryn
58
+ -- Name: questions; Type: TABLE; Schema: public; Owner: student
59
59
--
60
60
61
61
CREATE TABLE public.questions (
@@ -67,10 +67,10 @@ CREATE TABLE public.questions (
67
67
);
68
68
69
69
70
- ALTER TABLE public.questions OWNER TO caryn ;
70
+ ALTER TABLE public.questions OWNER TO student ;
71
71
72
72
--
73
- -- Name: questions_id_seq; Type: SEQUENCE; Schema: public; Owner: caryn
73
+ -- Name: questions_id_seq; Type: SEQUENCE; Schema: public; Owner: student
74
74
--
75
75
76
76
CREATE SEQUENCE public.questions_id_seq
@@ -82,31 +82,31 @@ CREATE SEQUENCE public.questions_id_seq
82
82
CACHE 1;
83
83
84
84
85
- ALTER TABLE public.questions_id_seq OWNER TO caryn ;
85
+ ALTER TABLE public.questions_id_seq OWNER TO student ;
86
86
87
87
--
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
89
89
--
90
90
91
91
ALTER SEQUENCE public.questions_id_seq OWNED BY public.questions.id;
92
92
93
93
94
94
--
95
- -- Name: categories id; Type: DEFAULT; Schema: public; Owner: caryn
95
+ -- Name: categories id; Type: DEFAULT; Schema: public; Owner: student
96
96
--
97
97
98
98
ALTER TABLE ONLY public.categories ALTER COLUMN id SET DEFAULT nextval('public.categories_id_seq'::regclass);
99
99
100
100
101
101
--
102
- -- Name: questions id; Type: DEFAULT; Schema: public; Owner: caryn
102
+ -- Name: questions id; Type: DEFAULT; Schema: public; Owner: student
103
103
--
104
104
105
105
ALTER TABLE ONLY public.questions ALTER COLUMN id SET DEFAULT nextval('public.questions_id_seq'::regclass);
106
106
107
107
108
108
--
109
- -- Data for Name: categories; Type: TABLE DATA; Schema: public; Owner: caryn
109
+ -- Data for Name: categories; Type: TABLE DATA; Schema: public; Owner: student
110
110
--
111
111
112
112
COPY public.categories (id, type) FROM stdin;
@@ -120,7 +120,7 @@ COPY public.categories (id, type) FROM stdin;
120
120
121
121
122
122
--
123
- -- Data for Name: questions; Type: TABLE DATA; Schema: public; Owner: caryn
123
+ -- Data for Name: questions; Type: TABLE DATA; Schema: public; Owner: student
124
124
--
125
125
126
126
COPY public.questions (id, question, answer, difficulty, category) FROM stdin;
@@ -147,37 +147,37 @@ COPY public.questions (id, question, answer, difficulty, category) FROM stdin;
147
147
148
148
149
149
--
150
- -- Name: categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: caryn
150
+ -- Name: categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: student
151
151
--
152
152
153
153
SELECT pg_catalog.setval('public.categories_id_seq', 6, true);
154
154
155
155
156
156
--
157
- -- Name: questions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: caryn
157
+ -- Name: questions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: student
158
158
--
159
159
160
160
SELECT pg_catalog.setval('public.questions_id_seq', 23, true);
161
161
162
162
163
163
--
164
- -- Name: categories categories_pkey; Type: CONSTRAINT; Schema: public; Owner: caryn
164
+ -- Name: categories categories_pkey; Type: CONSTRAINT; Schema: public; Owner: student
165
165
--
166
166
167
167
ALTER TABLE ONLY public.categories
168
168
ADD CONSTRAINT categories_pkey PRIMARY KEY (id);
169
169
170
170
171
171
--
172
- -- Name: questions questions_pkey; Type: CONSTRAINT; Schema: public; Owner: caryn
172
+ -- Name: questions questions_pkey; Type: CONSTRAINT; Schema: public; Owner: student
173
173
--
174
174
175
175
ALTER TABLE ONLY public.questions
176
176
ADD CONSTRAINT questions_pkey PRIMARY KEY (id);
177
177
178
178
179
179
--
180
- -- Name: questions category; Type: FK CONSTRAINT; Schema: public; Owner: caryn
180
+ -- Name: questions category; Type: FK CONSTRAINT; Schema: public; Owner: student
181
181
--
182
182
183
183
ALTER TABLE ONLY public.questions
0 commit comments