18 lines
441 B
SQL
18 lines
441 B
SQL
-- ----------------------------
|
|
-- 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
|
|
-- ----------------------------
|