On 22.10.2018 22:14, Evgeny Kotkov wrote: > @@ -104,9 +103,13 @@ > CREATE TABLE PRISTINE ( > ··/*·Alternative·MD5·checksum·used·for·communicating·with·older > ·····repositories.·Not·strictly·guaranteed·to·be·unique·among·table·rows.·*/ > > -··md5_checksum··TEXT·NOT·NULL > +··md5_checksum··TEXT·NOT·NULL, > + > +··data··BLOB > ··); > +/*·TODO:·While·here,·perhaps·add·`WITHOUT·ROWID`·for·the·new·schema·table?·*/ > > +
Note that this is no longer how schema changes will work. Instead, we create the oldest supported schema (currently 1.8) and then roll forward to the desired format. We could probably add WITHOUT ROWID anyway, but that will only affect new working copies, not upgrades of existing ones. -- Brane