AnchorCMSで投稿を削除する際に連番がずれる


タイトルがめっちょ長いですね。


AnchorCMSで投稿削除した時に連番がおかしくなります。(行の削除を実施しているだけ)
振り直す機能は実装されていないので、一度IDのカラムを削除後再度追加してあげる。

alter table `anchor_posts` AUTO_INCREMENT = 1;
alter table `anchor_posts` drop column id;
alter table `anchor_posts` add id int(5) primary key not null auto_increment first;