Fixed API test cases

This commit is contained in:
Akshay Joshi
2021-05-05 13:12:20 +05:30
parent b30ec71098
commit b13627398b
18 changed files with 26 additions and 26 deletions

View File

@@ -1,20 +1,20 @@
CREATE TABLE public.newtable1
CREATE TABLE IF NOT EXISTS public.newtable1
(
id integer,
col1 character varying(50),
PRIMARY KEY (id)
);
CREATE TABLE public.newtable2
CREATE TABLE IF NOT EXISTS public.newtable2
(
table1_id integer,
col2 character varying(50),
PRIMARY KEY (id)
);
CREATE TABLE public.newtable3
CREATE TABLE IF NOT EXISTS public.newtable3
(
)
;

View File

@@ -1,6 +1,6 @@
CREATE TABLE public.newtable1
CREATE TABLE IF NOT EXISTS public.newtable1
(
id integer,
col1 character varying(50),
@@ -10,7 +10,7 @@ WITH (
OIDS = FALSE
);
CREATE TABLE public.newtable2
CREATE TABLE IF NOT EXISTS public.newtable2
(
table1_id integer,
col2 character varying(50),
@@ -20,7 +20,7 @@ WITH (
OIDS = FALSE
);
CREATE TABLE public.newtable3
CREATE TABLE IF NOT EXISTS public.newtable3
(
)