@@ -31,6 +31,7 @@ DROP TABLE IF EXISTS products CASCADE;
31
31
DROP TABLE IF EXISTS barcodes CASCADE;
32
32
DROP TABLE IF EXISTS barcodes2 CASCADE;
33
33
DROP TABLE IF EXISTS " kunsthåndværk" CASCADE;
34
+ DROP TABLE IF EXISTS invisibles CASCADE;
34
35
35
36
--
36
37
-- Name: categories; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
@@ -156,7 +157,16 @@ CREATE TABLE barcodes (
156
157
157
158
CREATE TABLE " kunsthåndværk" (
158
159
id character varying (36 ) NOT NULL ,
159
- " Umlauts ä_ö_ü-COUNT" integer NOT NULL
160
+ " Umlauts ä_ö_ü-COUNT" integer NOT NULL ,
161
+ invisible character varying (36 )
162
+ );
163
+
164
+ --
165
+ -- Name: invisibles; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
166
+ --
167
+
168
+ CREATE TABLE "invisibles " (
169
+ id character varying (36 ) NOT NULL
160
170
);
161
171
162
172
--
@@ -244,8 +254,15 @@ INSERT INTO "barcodes" ("product_id", "hex", "bin") VALUES
244
254
-- Data for Name: kunsthåndværk; Type: TABLE DATA; Schema: public; Owner: postgres
245
255
--
246
256
247
- INSERT INTO " kunsthåndværk" (" id" , " Umlauts ä_ö_ü-COUNT" ) VALUES
248
- (' e42c77c6-06a4-4502-816c-d112c7142e6d' , 1 );
257
+ INSERT INTO " kunsthåndværk" (" id" , " Umlauts ä_ö_ü-COUNT" , " invisible" ) VALUES
258
+ (' e42c77c6-06a4-4502-816c-d112c7142e6d' , 1 , NULL );
259
+
260
+ --
261
+ -- Data for Name: invisibles; Type: TABLE DATA; Schema: public; Owner: postgres
262
+ --
263
+
264
+ INSERT INTO " invisibles" (" id" ) VALUES
265
+ (' e42c77c6-06a4-4502-816c-d112c7142e6d' );
249
266
250
267
--
251
268
-- Name: categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
@@ -340,6 +357,13 @@ ALTER TABLE ONLY barcodes
340
357
ALTER TABLE ONLY " kunsthåndværk"
341
358
ADD CONSTRAINT " kunsthåndværk_pkey" PRIMARY KEY (id);
342
359
360
+ --
361
+ -- Name: invisibles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
362
+ --
363
+
364
+ ALTER TABLE ONLY " invisibles"
365
+ ADD CONSTRAINT " invisibles_pkey" PRIMARY KEY (id);
366
+
343
367
--
344
368
-- Name: comments_post_id_idx; Type: INDEX; Schema: public; Owner: postgres; Tablespace:
345
369
--
0 commit comments