perf: 构建工具调整
This commit is contained in:
17
build/database/lite/install/param_value.sql
Normal file
17
build/database/lite/install/param_value.sql
Normal file
@@ -0,0 +1,17 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for param_value
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "param_value";
|
||||
CREATE TABLE "param_value" (
|
||||
"id" integer(11) NOT NULL,
|
||||
"ne_type" text(32),
|
||||
"ne_id" text(64) NOT NULL,
|
||||
"flag" integer(4) NOT NULL,
|
||||
"top_tag" text(32) NOT NULL,
|
||||
"value_json" text,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of param_value
|
||||
-- ----------------------------
|
||||
Reference in New Issue
Block a user