mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed API test cases
This commit is contained in:
@@ -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
|
||||
(
|
||||
)
|
||||
;
|
||||
|
||||
@@ -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
|
||||
(
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user