[Core] Bump DB schema version.

 - This adds the version bump which should have accompanied fe255aa1.
diff --git a/lib/Core/SQLiteBuildDB.cpp b/lib/Core/SQLiteBuildDB.cpp
index bbfe9cb..6527e87 100644
--- a/lib/Core/SQLiteBuildDB.cpp
+++ b/lib/Core/SQLiteBuildDB.cpp
@@ -35,10 +35,11 @@
 
 class SQLiteBuildDB : public BuildDB {
   /// Version History:
+  /// * 7: De-normalized the rule result dependencies.
   /// * 6: Added `ordinal` field for dependencies.
   /// * 5: Switched to using `WITHOUT ROWID` for dependencies.
   /// * 4: Pre-history
-  static const int currentSchemaVersion = 6;
+  static const int currentSchemaVersion = 7;
 
   sqlite3 *db = nullptr;