Files
be.ems/build/database/lite/install/cdr_event_smf.sql
2025-03-19 17:42:31 +08:00

27 lines
647 B
SQL

-- ----------------------------
-- Table structure for cdr_event_smf
-- ----------------------------
DROP TABLE IF EXISTS "cdr_event_smf";
CREATE TABLE "cdr_event_smf" (
"id" integer NOT NULL,
"ne_type" text(32),
"ne_name" text(64),
"rm_uid" text(32),
"timestamp" integer(20),
"cdr_json" text,
"created_at" integer(20),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Indexes structure for table cdr_event_smf
-- ----------------------------
CREATE INDEX "idx_smf_uid_t"
ON "cdr_event_smf" (
"rm_uid" ASC,
"timestamp" ASC
);
-- ----------------------------
-- Records of cdr_event_smf
-- ----------------------------