perf: 构建工具调整
This commit is contained in:
29
build/database/lite/install/ne_link.sql
Normal file
29
build/database/lite/install/ne_link.sql
Normal file
@@ -0,0 +1,29 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for ne_link
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "ne_link";
|
||||
CREATE TABLE "ne_link" (
|
||||
"id" integer NOT NULL,
|
||||
"ne_type" text(32) NOT NULL,
|
||||
"ne_id" text(32) NOT NULL,
|
||||
"rm_uid" text(40),
|
||||
"interface" text(16),
|
||||
"status" text(255),
|
||||
"created_at" text,
|
||||
"updated_at" text,
|
||||
"deleted_at" text,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table ne_link
|
||||
-- ----------------------------
|
||||
CREATE UNIQUE INDEX "idx_netype_neid"
|
||||
ON "ne_link" (
|
||||
"ne_type" ASC,
|
||||
"ne_id" ASC
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of ne_link
|
||||
-- ----------------------------
|
||||
Reference in New Issue
Block a user