2.5.1 重构标签业务代码并解决已知问题
旧版升级
创建数据表
create table article_tag
(
id int auto_increment
primary key,
article_id int not null comment '文章 ID',
tag_id int not null comment '标签 ID',
constraint article_tag_pk_2
unique (id)
);删除 article 文章表的 tag_ids 字段