perf: 构建工具调整
This commit is contained in:
45
build/database/lite/install/ne_version.sql
Normal file
45
build/database/lite/install/ne_version.sql
Normal file
@@ -0,0 +1,45 @@
|
||||
-- ----------------------------
|
||||
-- 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(20),
|
||||
"update_by" text(50),
|
||||
"update_time" integer(20),
|
||||
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);
|
||||
INSERT INTO "ne_version" VALUES (2, 'IMS', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_version" VALUES (3, 'AMF', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_version" VALUES (4, 'AUSF', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_version" VALUES (5, 'UDM', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_version" VALUES (6, 'SMF', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_version" VALUES (7, 'PCF', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
|
||||
INSERT INTO "ne_version" VALUES (10, 'UPF', '001', '', '', '', '', '', '', '', '', '', '0', 'system', 1729063407329, '', 0);
|
||||
Reference in New Issue
Block a user