fix Distribution typing, accepting & add demo

This commit is contained in:
wish
2023-11-07 21:07:49 +11:00
parent 29904d5b92
commit 14e61fd661
3 changed files with 46 additions and 27 deletions

View File

@@ -7,7 +7,7 @@ CREATE TABLE public.distribution_items
(
id serial PRIMARY KEY,
distribution_id integer NOT NULL,
item_type integer,
item_type integer NOT NULL,
item_id integer,
quantity integer
);