aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/schema.sql
AgeCommit message (Collapse)Author
2022-06-01schema.sql: add comment about hash being in base16Lorenzo Manacorda
2016-08-10Mark content-addressed paths in the Nix database and in .narinfoEelco Dolstra
This allows such paths to be imported without signatures.
2016-04-08Remove failed build cachingEelco Dolstra
This feature was implemented for Hydra, but Hydra no longer uses it.
2016-03-30LocalStore: Keep track of ultimately trusted pathsEelco Dolstra
These are content-addressed paths or outputs of locally performed builds. They are trusted even if they don't have signatures, so "nix verify-paths" won't complain about them.
2010-11-16* Store the size of a store path in the database (to be precise, theEelco Dolstra
size of the NAR serialisation of the path, i.e., `nix-store --dump PATH'). This is useful for Hydra.
2010-02-24(no commit message)Eelco Dolstra
2010-02-22* The database needs a trigger to get rid of self-references toEelco Dolstra
prevent a foreign key constraint violation on the Refs table when deleting a path.
2010-02-22* Put the derivation outputs in the database. This is useful for theEelco Dolstra
garbage collector.
2010-02-19* Foreign key support in SQLite is not a persistent setting, so enableEelco Dolstra
it at startup. * Implement negative caching. Now `make check' passes.
2010-02-18* Add the deriver to the ValidPaths table. In principle we could nowEelco Dolstra
store all the derivers of a path efficiently. But that opens a big can of worms with respect to garbage collector semantics.
2010-02-18* Assign an integer id to every row in the ValidPaths table in orderEelco Dolstra
to make the Refs table more space-efficient. For instance, this reduces the size of the database on my laptop from 93 MiB to 18 MiB. (It was 72 MiB with the old schema on an ext3 disk with a 1 KiB block size.)
2010-02-18* Convert the Nix database to SQLite.Eelco Dolstra