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