fix expected output

This commit is contained in:
Robert Lechte 2018-07-06 18:24:27 +10:00
parent d228020ca2
commit 14940abc8f
2 changed files with 6 additions and 6 deletions

View File

@ -133,11 +133,11 @@ drop type "public"."unwanted_enum";
drop extension if exists "pg_trgm";
CREATE UNIQUE INDEX order_items_pkey ON order_items USING btree (product_no, order_id);
CREATE UNIQUE INDEX order_items_pkey ON public.order_items USING btree (product_no, order_id);
CREATE INDEX products_name_idx ON products USING btree (name);
CREATE INDEX products_name_idx ON public.products USING btree (name);
CREATE UNIQUE INDEX products_pkey ON products USING btree (product_no);
CREATE UNIQUE INDEX products_pkey ON public.products USING btree (product_no);
alter table "public"."order_items" add constraint "order_items_pkey" PRIMARY KEY using index "order_items_pkey";

View File

@ -129,11 +129,11 @@ drop type "public"."unwanted_enum";
drop extension if exists "pg_trgm";
CREATE UNIQUE INDEX order_items_pkey ON order_items USING btree (product_no, order_id);
CREATE UNIQUE INDEX order_items_pkey ON public.order_items USING btree (product_no, order_id);
CREATE INDEX products_name_idx ON products USING btree (name);
CREATE INDEX products_name_idx ON public.products USING btree (name);
CREATE UNIQUE INDEX products_pkey ON products USING btree (product_no);
CREATE UNIQUE INDEX products_pkey ON public.products USING btree (product_no);
alter table "public"."order_items" add constraint "order_items_pkey" PRIMARY KEY using index "order_items_pkey";