aboutsummaryrefslogtreecommitdiff
path: root/bdep/database.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bdep/database.cxx')
-rw-r--r--bdep/database.cxx18
1 files changed, 18 insertions, 0 deletions
diff --git a/bdep/database.cxx b/bdep/database.cxx
index 5e0aea5..064f9ed 100644
--- a/bdep/database.cxx
+++ b/bdep/database.cxx
@@ -8,6 +8,8 @@
#include <bdep/diagnostics.hxx>
+#include <bdep/project.hxx>
+#include <bdep/project-odb.hxx>
#include <bdep/database-views.hxx>
#include <bdep/database-views-odb.hxx>
@@ -18,6 +20,22 @@ namespace bdep
using namespace odb::sqlite;
using odb::schema_catalog;
+ // Register the data migration functions.
+ //
+ template <odb::schema_version v>
+ using migration_entry = odb::data_migration_entry<v, DB_SCHEMA_VERSION_BASE>;
+
+ static const migration_entry<2>
+ migrate_v2 ([] (odb::database& db)
+ {
+ for (const shared_ptr<configuration>& c:
+ pointer_result (db.query<configuration> ()))
+ {
+ c->type = "target";
+ db.update (c);
+ }
+ });
+
database
open (const dir_path& d, tracer& tr, bool create)
{