6 lines
158 B
MySQL
6 lines
158 B
MySQL
|
CREATE TABLE `salix`.`defaultViewConfig`
|
||
|
(
|
||
|
tableCode VARCHAR(25) not null,
|
||
|
columns JSON not null
|
||
|
)
|
||
|
comment 'The default configuration of columns for views';
|