22 lines
523 B
Transact-SQL
22 lines
523 B
Transact-SQL
create table hrsa_charts_setting
|
|
(
|
|
id bigint primary key ,
|
|
create_time datetime,
|
|
update_time datetime,
|
|
creator bigint,
|
|
delete_type int default 0,
|
|
tenant_key nvarchar(10),
|
|
table_id bigint not null,
|
|
charts_type int not null,
|
|
item_values nvarchar(500),
|
|
item_col_value nvarchar(50) not null,
|
|
dimension_range int not null,
|
|
item_sort_value nvarchar(500),
|
|
item_col_sort_value nvarchar(50),
|
|
sort_type int,
|
|
sort_num int
|
|
)
|
|
GO
|
|
|
|
create index index_echarts_tk_ae4c0e13 on hrsa_charts_setting(tenant_key)
|
|
GO |