Skip to content

2.5.1 重构标签业务代码并解决已知问题

Choose a tag to compare

@LiuYuYang01 LiuYuYang01 released this 02 Apr 10:09
· 153 commits to master since this release

旧版升级

创建数据表

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