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

16 lines
361 B
SQL

-- ----------------------------
-- Table structure for title_info
-- ----------------------------
DROP TABLE IF EXISTS "title_info";
CREATE TABLE "title_info" (
"id" integer NOT NULL,
"tag" text(15),
"title_json" text,
"remark" text(255),
PRIMARY KEY ("id")
);
-- ----------------------------
-- Records of title_info
-- ----------------------------