|
|
|
@ -46,7 +46,8 @@ create table sos."item" (
|
|
|
|
|
item_description text not null,
|
|
|
|
|
item_urlslug citext unique not null,
|
|
|
|
|
item_price_cents integer not null,
|
|
|
|
|
item_published boolean not null default true
|
|
|
|
|
item_published boolean not null default true,
|
|
|
|
|
item_tax_percent_override numeric(8,6) null
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
create table sos."cart_item" (
|
|
|
|
@ -261,3 +262,7 @@ create table sos."item_stockchange_admin" (
|
|
|
|
|
|
|
|
|
|
stockchange_withdrawal_uuid uuid references sos."admin_withdrawal" (withdrawal_uuid)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
create table sos."config" (
|
|
|
|
|
config_default_tax_percent numeric(8,6) not null default 7.250
|
|
|
|
|
);
|
|
|
|
|