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

9 lines
358B

  1. DROP TABLE IF EXISTS wflow_user_agents;
  2. CREATE TABLE wflow_user_agents (
  3. user_id varchar(30) NOT NULL,
  4. agent_user_id varchar(30) NOT NULL,
  5. start_time timestamp NOT NULL,
  6. end_time timestamp NULL DEFAULT NULL,
  7. create_time timestamp NULL DEFAULT NULL,
  8. CONSTRAINT "wflow_user_agents_pri" PRIMARY KEY ("user_id")
  9. )