PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Reset all entries (es. "Entry Id:" in Forms/Entries)

  1. MFJUNIOR
    Member

    Hi, I'm using GF for Absract submission, after some test I would like to reset all entries: if I delete every entry, the new entry id doesn't start from "1" but continue from the last entry id.

    How can I do?

    Thank you!

    Marco

    Posted 11 years ago on Monday January 21, 2013 | Permalink
  2. You would need to reset the autoincrement in the database. You can use a tool like phpMyAdmin to do it. There may be a function in phpMyAdmin to do it, or the SQL would look something like this:

    /* change wp_ here to your table prefix */
    ALTER TABLE wp_rg_lead AUTO_INCREMENT = 1;

    Please make a database backup before attempting any direct SQL commands on the database.

    Posted 11 years ago on Monday January 28, 2013 | Permalink