Opened 15 years ago
Closed 15 years ago
#13852 closed (duplicate)
Add AUTOINCREMENT on Sqlite table creation
Description ¶
When i select sdlite3 db engine, id field on objects are converted in:
"id" integer NOT NULL PRIMARY KEY
but this definition cause the reuse of canceled "id" on table (see http://www.sqlite.org/faq.html#q1 )
Adding AUTOINCREMENT in "id" definition statement, will make the same behavior on pgsql, mysql and sqlite engine.
Note:
See TracTickets
for help on using tickets.
Duplicate of #10164.