diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-02-19 07:52:55 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-02-19 07:52:55 +0200 |
commit | 161006153a89e5fb5c10d2f4b423c8e7dbeedba7 (patch) | |
tree | fdd5eff65361cff1517f696f1397bbedf0213869 | |
parent | 89093df1427cbc5e638a53ce551e78794d4071bc (diff) |
Close database schema version
-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 b5507d7..7fa8b47 100644 --- a/libbrep/build.hxx +++ b/libbrep/build.hxx @@ -26,7 +26,7 @@ // #define LIBBREP_BUILD_SCHEMA_VERSION_BASE 4 -#pragma db model version(LIBBREP_BUILD_SCHEMA_VERSION_BASE, 6, open) +#pragma db model version(LIBBREP_BUILD_SCHEMA_VERSION_BASE, 6, 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 da16e16..11e7fdf 100644 --- a/libbrep/package.hxx +++ b/libbrep/package.hxx @@ -21,7 +21,7 @@ // #define LIBBREP_PACKAGE_SCHEMA_VERSION_BASE 7 -#pragma db model version(LIBBREP_PACKAGE_SCHEMA_VERSION_BASE, 11, open) +#pragma db model version(LIBBREP_PACKAGE_SCHEMA_VERSION_BASE, 11, closed) namespace brep { |