18 lines
381 B
SQL
18 lines
381 B
SQL
-- ----------------------------
|
|
-- Table structure for 4a_log
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS "4a_log";
|
|
CREATE TABLE "4a_log" (
|
|
"LogTime" text,
|
|
"SubUser" text(32),
|
|
"App" text(64),
|
|
"Sip" text(32),
|
|
"AppModule" text(32),
|
|
"OpType" text(255),
|
|
"OpText" text(255)
|
|
);
|
|
|
|
-- ----------------------------
|
|
-- Records of 4a_log
|
|
-- ----------------------------
|