diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-08-07 12:58:09 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-08-07 12:58:09 +0200 |
commit | c670912f45f6a6c87df99f00dd39cf8880c30a29 (patch) | |
tree | 51034a298ebb7b43a4ed10fae65cab21bdf545ff | |
parent | 3f2fcb54d0ba9825676c6f55a2dc2f8e7cb18fe7 (diff) |
Close database schema versions
-rw-r--r-- | libbrep/build.hxx | 2 | ||||
-rw-r--r-- | libbrep/package.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libbrep/build.hxx b/libbrep/build.hxx index 7edf70c..dda9b43 100644 --- a/libbrep/build.hxx +++ b/libbrep/build.hxx @@ -26,7 +26,7 @@ // #define LIBBREP_BUILD_SCHEMA_VERSION_BASE 2 -#pragma db model version(LIBBREP_BUILD_SCHEMA_VERSION_BASE, 2, open) +#pragma db model version(LIBBREP_BUILD_SCHEMA_VERSION_BASE, 2, closed) // We have to keep these mappings at the global scope instead of inside // the brep namespace because they need to be also effective in the diff --git a/libbrep/package.hxx b/libbrep/package.hxx index d59d633..a739525 100644 --- a/libbrep/package.hxx +++ b/libbrep/package.hxx @@ -21,7 +21,7 @@ // #define LIBBREP_PACKAGE_SCHEMA_VERSION_BASE 5 -#pragma db model version(LIBBREP_PACKAGE_SCHEMA_VERSION_BASE, 5, open) +#pragma db model version(LIBBREP_PACKAGE_SCHEMA_VERSION_BASE, 5, closed) namespace brep { |