杭州市委办项管
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

wflow_user_agents.sql 358B

hace 1 año
123456789
  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. )