添加功能
This commit is contained in:
@@ -1078,10 +1078,10 @@ CREATE TABLE shz_data_dashboard.model_demand_monitor_employment
|
||||
(
|
||||
id serial PRIMARY KEY,
|
||||
year integer NOT NULL,
|
||||
total_count integer NOT NULL,
|
||||
first_industry_count integer NOT NULL,
|
||||
second_industry_count integer NOT NULL,
|
||||
third_industry_count integer NOT NULL
|
||||
total_count numeric(10, 2) NOT NULL,
|
||||
first_industry_count numeric(10, 2) NOT NULL,
|
||||
second_industry_count numeric(10, 2) NOT NULL,
|
||||
third_industry_count numeric(10, 2) NOT NULL
|
||||
)
|
||||
;
|
||||
|
||||
@@ -1107,4 +1107,41 @@ COMMENT
|
||||
ON COLUMN shz_data_dashboard.model_demand_monitor_employment.third_industry_count IS '第三产业就业人数(万人)';
|
||||
|
||||
COMMENT
|
||||
ON TABLE shz_data_dashboard.model_demand_monitor_employment IS '劳动力需求就业人数';
|
||||
ON TABLE shz_data_dashboard.model_demand_monitor_employment IS '劳动力需求就业人数';
|
||||
|
||||
|
||||
--劳动力需求产业增加值
|
||||
CREATE TABLE shz_data_dashboard.model_demand_monitor_industry_increase
|
||||
(
|
||||
id serial PRIMARY KEY,
|
||||
year integer NOT NULL,
|
||||
total_amount numeric(10, 2) NOT NULL,
|
||||
first_industry_amount numeric(10, 2) NOT NULL,
|
||||
second_industry_amount numeric(10, 2) NOT NULL,
|
||||
third_industry_amount numeric(10, 2) NOT NULL
|
||||
)
|
||||
;
|
||||
|
||||
ALTER TABLE shz_data_dashboard.model_demand_monitor_industry_increase
|
||||
OWNER TO sysdba;
|
||||
|
||||
COMMENT
|
||||
ON COLUMN shz_data_dashboard.model_demand_monitor_industry_increase.id IS '主键';
|
||||
|
||||
COMMENT
|
||||
ON COLUMN shz_data_dashboard.model_demand_monitor_industry_increase.year IS '年份';
|
||||
|
||||
COMMENT
|
||||
ON COLUMN shz_data_dashboard.model_demand_monitor_industry_increase.total_amount IS '生产总值(亿元)';
|
||||
|
||||
COMMENT
|
||||
ON COLUMN shz_data_dashboard.model_demand_monitor_industry_increase.first_industry_amount IS '第一产业增加值(亿元)';
|
||||
|
||||
COMMENT
|
||||
ON COLUMN shz_data_dashboard.model_demand_monitor_industry_increase.second_industry_amount IS '第二产业增加值(亿元)';
|
||||
|
||||
COMMENT
|
||||
ON COLUMN shz_data_dashboard.model_demand_monitor_industry_increase.third_industry_amount IS '第三产业增加值(亿元)';
|
||||
|
||||
COMMENT
|
||||
ON TABLE shz_data_dashboard.model_demand_monitor_industry_increase IS '劳动力需求产业增加值';
|
||||
Reference in New Issue
Block a user