杭州市委办项管
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.

12 lines
471B

  1. DROP TABLE IF EXISTS wflow_roles;
  2. CREATE TABLE wflow_roles (
  3. role_id varchar(20) NOT NULL,
  4. role_name varchar(50) NOT NULL,
  5. created timestamp,
  6. CONSTRAINT "wflow_roles_pri" PRIMARY KEY ("role_id")
  7. )
  8. INSERT INTO wflow_roles VALUES ('BOOS', '董事长', '2022-09-04 18:22:18');
  9. INSERT INTO wflow_roles VALUES ('HR', '人事', '2022-09-04 18:22:47');
  10. INSERT INTO wflow_roles VALUES ('WFLOW_APPROVAL_ADMIN', '审批管理员', '2022-09-04 18:14:16');