about summary refs log tree commit diff
path: root/src/libstore/local-store.hh
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2007-08-13T11·37+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2007-08-13T11·37+0000
commit3757ee589f46a401fdacaa2126e6bf4902eee23d (patch)
treedd9580bf95c8c9e59c7a025e6a8ac76b0dff98b6 /src/libstore/local-store.hh
parent59afc1a15cfb90c333aa7423e46be32cc0635b12 (diff)
* Bump the Nix database schema version number; delete the substitutes
  table.

Diffstat (limited to 'src/libstore/local-store.hh')
-rw-r--r--src/libstore/local-store.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh
index ffcef60716..8bd37bc0a3 100644
--- a/src/libstore/local-store.hh
+++ b/src/libstore/local-store.hh
@@ -13,9 +13,9 @@ class Transaction;
 
 
 /* Nix store and database schema version.  Version 1 (or 0) was Nix <=
-   0.7.  Version 2 was Nix 0.8 and 0.9.  Version 3 is Nix 0.10 and
-   up. */
-const int nixSchemaVersion = 3;
+   0.7.  Version 2 was Nix 0.8 and 0.9.  Version 3 is Nix 0.10.
+   Version 4 is Nix 0.11. */
+const int nixSchemaVersion = 4;
 
 
 extern string drvsLogDir;