perf: 构建工具调整
This commit is contained in:
31
build/database/lite/install/ne_software.sql
Normal file
31
build/database/lite/install/ne_software.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for ne_software
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "ne_software";
|
||||
CREATE TABLE "ne_software" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32) NOT NULL,
|
||||
"name" text(128) NOT NULL,
|
||||
"path" text(500),
|
||||
"version" text(64) NOT NULL,
|
||||
"description" text(500),
|
||||
"create_by" text(50),
|
||||
"create_time" integer(20),
|
||||
"update_by" text(50),
|
||||
"update_time" integer(20),
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table ne_software
|
||||
-- ----------------------------
|
||||
CREATE UNIQUE INDEX "uk_type_name_version"
|
||||
ON "ne_software" (
|
||||
"ne_type" ASC,
|
||||
"name" ASC,
|
||||
"version" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of ne_software
|
||||
-- ----------------------------
|
||||
Reference in New Issue
Block a user