summaryrefslogtreecommitdiff
path: root/odb/relational/common.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/relational/common.cxx')
-rw-r--r--odb/relational/common.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/odb/relational/common.cxx b/odb/relational/common.cxx
index 92e2c8f..2d8f8d6 100644
--- a/odb/relational/common.cxx
+++ b/odb/relational/common.cxx
@@ -291,8 +291,11 @@ namespace relational
{
os << "template <const char* table>" << endl
<< "const typename " << scope_ << "::" << name << "_type_" << endl
- << scope_ << "::" << name << " (" <<
- "table, " << strlit (column) << ");"
+ << scope_ << "::" << name << " (" << "table, " << strlit (column);
+
+ column_ctor_extra (m);
+
+ os << ");"
<< endl;
}