Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经尝试截断 core_email_template,但没有成功。即使我删除了以前的交易电子邮件,只要我创建一个新的,ID 就会从我以前的模板中增加。我希望它从 ID=1 重新开始。
谢谢!
Afaik,某些 MySQL 版本在使用时无法正确重置自动增量值
TRUNCATE table_name;
或者,您可以尝试直接重置它:
ALTER TABLE `core_email_template` AUTO_INCREMENT = 1;