39 lines
1009 B
SQL
39 lines
1009 B
SQL
-- ----------------------------
|
|
-- Table structure for ne_version
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS "ne_version";
|
|
CREATE TABLE "ne_version" (
|
|
"id" integer NOT NULL,
|
|
"ne_type" text(32) NOT NULL,
|
|
"ne_id" text(32) NOT NULL,
|
|
"name" text(128),
|
|
"version" text(64),
|
|
"path" text(255),
|
|
"pre_name" text(128),
|
|
"pre_version" text(64),
|
|
"pre_path" text(255),
|
|
"new_name" text(128),
|
|
"new_version" text(64),
|
|
"new_path" text(255),
|
|
"status" text(16),
|
|
"create_by" text(50),
|
|
"create_time" integer,
|
|
"update_by" text(50),
|
|
"update_time" integer,
|
|
PRIMARY KEY ("id")
|
|
);
|
|
|
|
-- ----------------------------
|
|
-- Indexes structure for table ne_version
|
|
-- ----------------------------
|
|
CREATE UNIQUE INDEX "uk_ver_type_id"
|
|
ON "ne_version" (
|
|
"ne_type" ASC,
|
|
"ne_id" ASC
|
|
);
|
|
|
|
-- ----------------------------
|
|
-- Records of ne_version
|
|
-- ----------------------------
|
|
INSERT INTO "ne_version" VALUES (1, 'OMC', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
|