您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

clear_database.sql 226B

12345678
  1. TRUNCATE confirms;
  2. ALTER TABLE confirms AUTO_INCREMENT = 1;
  3. TRUNCATE status;
  4. ALTER TABLE status AUTO_INCREMENT = 1;
  5. TRUNCATE tokens;
  6. ALTER TABLE tokens AUTO_INCREMENT = 1;
  7. TRUNCATE users;
  8. ALTER TABLE users AUTO_INCREMENT = 1;