2021-10-27 15:11:33 +00:00
|
|
|
CREATE TABLE `salix`.`defaultViewConfig`
|
|
|
|
(
|
|
|
|
tableCode VARCHAR(25) not null,
|
|
|
|
columns JSON not null
|
|
|
|
)
|
2021-11-09 10:47:54 +00:00
|
|
|
comment 'The default configuration of columns for views';
|
|
|
|
|
|
|
|
INSERT INTO `salix`.`defaultViewConfig` (tableCode, columns)
|
2021-11-10 16:07:16 +00:00
|
|
|
VALUES
|
2021-11-11 09:40:21 +00:00
|
|
|
('itemsIndex', '{"intrastat":false,"stemMultiplier":false}'),
|
|
|
|
('latestBuys', '{"intrastat":false,"description":false,"density":false,"isActive":false,"freightValue":false,"packageValue":false,"isIgnored":false,"price2":false,"minPrice":false,"ektFk":false,"weight":false}');
|
2021-11-10 16:07:16 +00:00
|
|
|
|
|
|
|
|