summaryrefslogtreecommitdiff
path: root/odb/relational/header.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-07-05 18:39:09 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-07-05 18:39:09 +0200
commit5d33aeaa327f53c920a65302925090debdfc80b8 (patch)
tree5c1c0806ae8b09b6f04a16ba2d50b762f83cd416 /odb/relational/header.hxx
parentaae1a5139744da164e8565004753b69645038eb0 (diff)
Add support for multi-pass database schema generation
Diffstat (limited to 'odb/relational/header.hxx')
-rw-r--r--odb/relational/header.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/relational/header.hxx b/odb/relational/header.hxx
index 11ecfdf..f25e9fe 100644
--- a/odb/relational/header.hxx
+++ b/odb/relational/header.hxx
@@ -1008,8 +1008,8 @@ namespace relational
//
if (embedded_schema)
{
- os << "static void" << endl
- << "create_schema (database&);"
+ os << "static bool" << endl
+ << "create_schema (database&, unsigned short pass);"
<< endl;
}