作者 tangxvhui

更新sql脚本

正在显示 1 个修改的文件 包含 85 行增加5 行删除
1 -  
2 -- 增加指标分类字段, 默认0 1 -- 增加指标分类字段, 默认0
3 -ALTER TABLE public.evaluation_item_used ADD indicator_type int4 NOT NULL DEFAULT 0; 2 +ALTER TABLE public.evaluation_item_used
  3 + ADD indicator_type int4 NOT NULL DEFAULT 0;
  4 +
4 COMMENT ON COLUMN public.evaluation_item_used.indicator_type IS '指标类型'; 5 COMMENT ON COLUMN public.evaluation_item_used.indicator_type IS '指标类型';
5 6
6 -- 增加项目表-任务负责人ID 7 -- 增加项目表-任务负责人ID
7 -ALTER TABLE public.evaluation_project ADD principal_id text NULL; 8 +ALTER TABLE public.evaluation_project
  9 + ADD principal_id text NULL;
  10 +
8 COMMENT ON COLUMN public.evaluation_project.principal_id IS '任务负责人ID'; 11 COMMENT ON COLUMN public.evaluation_project.principal_id IS '任务负责人ID';
9 12
10 -- 增加评估Cache数据缓存表-任务里程碑JSON 13 -- 增加评估Cache数据缓存表-任务里程碑JSON
11 -ALTER TABLE public.staff_assess_cache ADD assess_task_stages jsonb NULL;  
12 -COMMENT ON COLUMN public.staff_assess_cache.assess_task_stages IS '任务里程碑内容';  
  14 +ALTER TABLE public.staff_assess_cache
  15 + ADD assess_task_stages jsonb NULL;
  16 +
  17 +COMMENT ON COLUMN public.staff_assess_cache.assess_task_stages IS '任务里程碑内容';
  18 +
  19 +-- 添加表 task
  20 +CREATE TABLE public.task(
  21 + id bigserial NOT NULL,
  22 + created_at timestamptz NULL,
  23 + updated_at timestamptz NULL,
  24 + deleted_at timestamptz NULL,
  25 + "name" text NULL,
  26 + alias text NULL,
  27 + company_id int8 NULL,
  28 + leader jsonb NULL,
  29 + status int8 NULL,
  30 + "level" int8 NULL,
  31 + level_name text NULL,
  32 + related_user jsonb NULL,
  33 + run_at int8 NULL,
  34 + stop_at int8 NULL,
  35 + anomaly int8 NULL DEFAULT 0,
  36 + warn_flag int4 NULL,
  37 + current_stage jsonb NULL,
  38 + last_stage jsonb NULL,
  39 + CONSTRAINT task_pkey PRIMARY KEY (id)
  40 +);
  41 +
  42 +-- 添加表 task_ignore
  43 +CREATE TABLE public.task_ignore(
  44 + id bigserial NOT NULL,
  45 + task_id int8 NULL,
  46 + user_id int8 NULL,
  47 + created_at timestamptz NULL
  48 +);
  49 +
  50 +-- 添加表 task_level
  51 +CREATE TABLE public.task_level(
  52 + id bigserial NOT NULL,
  53 + level_name text NULL,
  54 + company_id int8 NULL,
  55 + CONSTRAINT task_level_pkey PRIMARY KEY (id)
  56 +);
  57 +
  58 +-- 添加表 task_record
  59 +CREATE TABLE public.task_record(
  60 + id bigserial NOT NULL,
  61 + company_id int8 NULL,
  62 + staff_assess_id int8 NULL,
  63 + task_id int8 NULL,
  64 + task_category text NULL,
  65 + task_name text NULL,
  66 + task_alias text NULL,
  67 + task_leader jsonb NULL,
  68 + assist_level int8 NULL,
  69 + assist_content text NULL,
  70 + task_stages jsonb NULL,
  71 + task_stage_check jsonb NULL,
  72 + created_at timestamptz NULL,
  73 + updated_at timestamptz NULL,
  74 + deleted_at timestamptz NULL,
  75 + anomaly_state int8 NULL DEFAULT 0,
  76 + CONSTRAINT task_record_pkey PRIMARY KEY (id)
  77 +);
  78 +
  79 +-- 添加表 task_stage
  80 +CREATE TABLE public.task_stage(
  81 + id bigserial NOT NULL,
  82 + task_id int8 NULL,
  83 + created_at timestamptz NULL,
  84 + updated_at timestamptz NULL,
  85 + deleted_at timestamptz NULL,
  86 + "name" text NULL,
  87 + sort_by int8 NULL,
  88 + plan_completed_at int8 NULL,
  89 + real_completed_at int8 NULL,
  90 + CONSTRAINT task_stage_pkey PRIMARY KEY (id)
  91 +);
  92 +