杭州市委办项管
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

9 行
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. )