Re: [PATCH 2/2] Alter the Builds table to have an id field

2020-01-25 Thread Christopher Baines
Ludovic Courtès writes: > Christopher Baines skribis: > >> The internal rowid's are used for builds as you can request builds by using >> the rowid in the URL. >> >> The motivation here is to enable running VACUUM operations in SQLite, without >> risking the rowid's for Builds changing. It woul

Re: [PATCH 2/2] Alter the Builds table to have an id field

2020-01-25 Thread Ludovic Courtès
Christopher Baines skribis: > The internal rowid's are used for builds as you can request builds by using > the rowid in the URL. > > The motivation here is to enable running VACUUM operations in SQLite, without > risking the rowid's for Builds changing. It would be bad if they change, as > they'

[PATCH 2/2] Alter the Builds table to have an id field

2020-01-24 Thread Christopher Baines
The internal rowid's are used for builds as you can request builds by using the rowid in the URL. The motivation here is to enable running VACUUM operations in SQLite, without risking the rowid's for Builds changing. It would be bad if they change, as they're used in the URL's for builds. * src/s