summaryrefslogtreecommitdiff
path: root/odb/relational/generate.hxx
AgeCommit message (Collapse)AuthorFilesLines
2024-01-24Turn odb repository into muti-package repositoryKaren Arutyunov1-81/+0
Also remove the autoconf/make-based build system.
2021-02-24Adapt to cutl/ to libcutl/ renameKaren Arutyunov1-1/+1
2020-02-13Drop copyright notice from source codeKaren Arutyunov1-1/+0
2019-01-16Update copyright yearKaren Arutyunov1-1/+1
2018-05-24Update copyright yearKaren Arutyunov1-1/+1
2017-01-03Update copyright yearBoris Kolpackov1-1/+1
2015-02-06Update copyrightBoris Kolpackov1-1/+1
2013-04-26Add database name to changelogBoris Kolpackov1-1/+1
2013-04-10Add support for embedded schema migrationBoris Kolpackov1-1/+1
2013-04-10Generate embedded schema in single function instead of one per objectBoris Kolpackov1-6/+5
2013-04-10Generate add/drop table migration statementsBoris Kolpackov1-2/+10
2013-04-10Add --changelog{,-in,-out,-dir} optionsBoris Kolpackov1-1/+2
2013-04-10Add support for maintaining log of database model changesBoris Kolpackov1-0/+14
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2012-09-13Add --sql-interlude and --sql-interlude-file optionsBoris Kolpackov1-1/+10
2012-03-05Add support for generating schema creation code into separate C++ fileBoris Kolpackov1-0/+6
2012-01-29Update copyright yearBoris Kolpackov1-1/+1
2012-01-29Remove author field from file headerBoris Kolpackov1-1/+0
Too much effort to maintain.
2011-10-24Generate database schema from database model instead of C++ modelBoris Kolpackov1-0/+10
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.
2011-03-21Split MySQL code generator into common and db-specific partsBoris Kolpackov1-0/+36
The common part (in relational/) still has some MySQL-specific parts. Also, add the notion of the current context which is used to avoid explicitly passing the context object to every generator's c-tor.