From 08a47c70ad517b80b72914d47d547463f576bcd3 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 24 Oct 2011 16:32:51 +0200 Subject: Generate database schema from database model instead of C++ model We now first create the so-called database model from C++ model and then use that to generate the database schema. The new approach also adds more general support for primary/foreign keys, including multi- column keys. Finally, for MySQL we now generate out-of-line foreign key definitions. Because MySQL does not support deferred constraints checking, deferred foreign keys are written commented out, for documentation. --- odb/processor.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'odb/processor.cxx') diff --git a/odb/processor.cxx b/odb/processor.cxx index 4ace44b..2779957 100644 --- a/odb/processor.cxx +++ b/odb/processor.cxx @@ -21,7 +21,7 @@ process (options const& ops, semantics::unit& unit, semantics::path const&) // if (ops.database () != database::tracer) { - auto_ptr ctx (create_context (cerr, unit, ops)); + auto_ptr ctx (create_context (cerr, unit, ops, 0)); relational::process (); } } -- cgit v1.1