summaryrefslogtreecommitdiff
path: root/odb/relational/schema.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/relational/schema.hxx')
-rw-r--r--odb/relational/schema.hxx4
1 files 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