Update schemas
This commit is contained in:
parent
0a1a12cd0a
commit
80ccbf5c41
2 changed files with 29 additions and 4 deletions
testdata
13
testdata/postgres_test_schema.sql
vendored
13
testdata/postgres_test_schema.sql
vendored
|
@ -177,24 +177,37 @@ create table spider_toys (
|
|||
|
||||
create table pals (
|
||||
pal character varying,
|
||||
name character varying,
|
||||
primary key (pal)
|
||||
);
|
||||
|
||||
create table friend (
|
||||
friend character varying,
|
||||
name character varying,
|
||||
primary key (friend)
|
||||
);
|
||||
|
||||
create table bro (
|
||||
bros character varying,
|
||||
name character varying,
|
||||
primary key (bros)
|
||||
);
|
||||
|
||||
create table enemies (
|
||||
enemies character varying,
|
||||
name character varying,
|
||||
primary key (enemies)
|
||||
);
|
||||
|
||||
|
||||
create table chocolate (
|
||||
dog varchar(100) primary key
|
||||
);
|
||||
|
||||
create table waffles (
|
||||
cat varchar(100) primary key
|
||||
);
|
||||
|
||||
create table fun_arrays (
|
||||
id serial,
|
||||
fun_one integer[] null,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue