From e9a4bf1902388ad5d38bb9424b87b007943275c6 Mon Sep 17 00:00:00 2001 From: Constantin Michael Date: Wed, 15 Jun 2011 10:31:56 +0200 Subject: Move leading space in object_columns::type hook to object_columns::column --- odb/relational/schema.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/odb/relational/schema.hxx b/odb/relational/schema.hxx index 9d0c0d1..a59bf33 100644 --- a/odb/relational/schema.hxx +++ b/odb/relational/schema.hxx @@ -185,7 +185,7 @@ namespace relational if (!first) os << "," << endl; - os << " " << quote_id (name); + os << " " << quote_id (name) << " "; type (m); constraints (m); @@ -202,7 +202,7 @@ namespace relational virtual void type (semantics::data_member& m) { - os << " " << column_type (m, prefix_); + os << column_type (m, prefix_); } virtual void -- cgit v1.1