14 lines
792 B
SQL
14 lines
792 B
SQL
CREATE TABLE `salix`.`defaultViewConfig`
|
|
(
|
|
tableCode VARCHAR(25) not null,
|
|
columns JSON not null
|
|
)
|
|
comment 'The default configuration of columns for views';
|
|
|
|
INSERT INTO `salix`.`defaultViewConfig` (tableCode, columns)
|
|
VALUES
|
|
('itemsIndex', '{"intrastat":false,"stemMultiplier":false,"landed":false}'),
|
|
('latestBuys', '{"intrastat":false,"description":false,"density":false,"isActive":false,"freightValue":false,"packageValue":false,"isIgnored":false,"price2":false,"minPrice":true,"ektFk":false,"weight":false,"id":true,"packing":true,"grouping":true,"quantity":true,"size":false,"name":true,"code":true,"origin":true,"family":true,"entryFk":true,"buyingValue":true,"comissionValue":false,"price3":true,"packageFk":true,"packingOut":true}'),
|
|
('ticketsMonitor', '{"id":false}');
|
|
|
|
|