16 lines
361 B
SQL
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
|
|
-- ----------------------------
|