Files
be.ems/build/database/lite/install/param_value.sql
2025-03-19 17:42:31 +08:00

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
-- ----------------------------