feat: add related orders
This commit is contained in:
committed by
Steve Chavez
parent
ef42d1c87f
commit
78d45b4e32
Vendored
+9
@@ -2996,3 +2996,12 @@ CREATE TABLE public.tb (
|
||||
|
||||
CREATE VIEW test.va AS SELECT a1 FROM public.ta;
|
||||
CREATE VIEW test.vb AS SELECT b1 FROM public.tb;
|
||||
|
||||
create table test.trash(
|
||||
id int primary key
|
||||
);
|
||||
|
||||
create table test.trash_details(
|
||||
id int primary key references test.trash(id),
|
||||
jsonb_col jsonb
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user