Skip to content
Snippets Groups Projects
Commit 067044d9 authored by Ralf Habacker's avatar Ralf Habacker Committed by Ralf Habacker
Browse files

Fix 'Generated SQL incomplete due to CHECK constraints not being terminated with ;'.

BUG:362244
FIXED-IN:2.19.1 (KDE Applications 16.04.1)
parent afa3cb45
No related branches found
No related tags found
No related merge requests found
......@@ -613,7 +613,7 @@ void SQLWriter::printCheckConstraints(QTextStream& sql, UMLClassifierListItemLis
sql << "ALTER TABLE " << cleanName(m_pEntity->name())
<<" ADD CONSTRAINT " << cleanName(chConstr->name())
<<" CHECK (" << chConstr->getCheckCondition()
<<")";
<<");";
sql << m_endl;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment