杭州市委办项管
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
453B

  1. DROP TABLE IF EXISTS wflow_model_groups;
  2. CREATE TABLE wflow_model_groups (
  3. group_id bigserial NOT NULL,
  4. group_name varchar(50),
  5. sort int2 NOT NULL,
  6. updated timestamp,
  7. CONSTRAINT wflow_model_groups_pri PRIMARY key ("group_id")
  8. );
  9. comment ON TABLE wflow_model_groups IS '流程分组表';
  10. comment ON COLUMN wflow_model_groups.group_name IS '分组名';
  11. comment ON COLUMN wflow_model_groups.sort IS '排序';