sqlite-utils icon indicating copy to clipboard operation
sqlite-utils copied to clipboard

Support AUTOINCREMENT keyword

Open DerBunteBall opened this issue 5 months ago • 0 comments

As far as I can see sqlite-utils doesn't support AUTOINCREMENT keyword.

I would like to do something like this:

CREATE TABLE mytable(
       id INTEGER PRIMARY KEY AUTOINCREMENT,
       ........
);

It would be nice to have this for table definition and for inserts without IDs.

Also see #602

Best Regards

DerBunteBall avatar Jul 11 '25 20:07 DerBunteBall