removed m2m markers
This commit is contained in:
Vendored
-23
@@ -1275,29 +1275,6 @@ create table test.comp_component_instance (
|
||||
constraint comp_component_instance_component_fkey foreign key (product_id, component_id) references test.comp_component(product_id, component_id)
|
||||
);
|
||||
|
||||
-- Tables for testing composite m2m relationships in the OpenAPI output
|
||||
create table test.comp_being (
|
||||
a int not null,
|
||||
b int not null,
|
||||
primary key(a, b)
|
||||
);
|
||||
|
||||
create table test.comp_thing (
|
||||
x int not null,
|
||||
y int not null,
|
||||
primary key(x, y)
|
||||
);
|
||||
|
||||
create table test.comp_being_thing (
|
||||
a int not null,
|
||||
b int not null,
|
||||
x int not null,
|
||||
y int not null,
|
||||
primary key(a, b, x, y),
|
||||
constraint comp_being_thing_being_fkey foreign key (a, b) references test.comp_being(a, b),
|
||||
constraint comp_being_thing_thing_fkey foreign key (x, y) references test.comp_thing(x, y)
|
||||
);
|
||||
|
||||
create function test.single_out_param(num int, OUT num_plus_one int) AS $$
|
||||
select num + 1;
|
||||
$$ language sql;
|
||||
|
||||
Reference in New Issue
Block a user