-- ---------------------------- -- Table structure for trace_task -- ---------------------------- DROP TABLE IF EXISTS "trace_task"; CREATE TABLE "trace_task" ( "id" integer NOT NULL, "trace_id" text(16) NOT NULL, "trace_type" text(2) NOT NULL, "start_time" integer, "end_time" integer, "interfaces" text(255), "imsi" text(16), "msisdn" text(16), "src_ip" text(128), "dst_ip" text(128), "create_by" text(50), "create_time" integer, "remark" text(500), "ne_list" text(32) NOT NULL, "notify_url" text(128) NOT NULL, PRIMARY KEY ("id") ); -- ---------------------------- -- Records of trace_task -- ----------------------------