summaryrefslogtreecommitdiff
path: root/odb/semantics/relational/table.hxx
AgeCommit message (Collapse)AuthorFilesLines
2024-01-24Turn odb repository into muti-package repositoryKaren Arutyunov1-115/+0
Also remove the autoconf/make-based build system.
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-09-15Cleanup polymorphic base tables when dropping derived oneBoris Kolpackov1-0/+12
2013-04-26Add support for table options in changelog, use to handle MySQL engineBoris Kolpackov1-0/+14
2013-04-10Add changelog support for add/drop index/foreign keyBoris Kolpackov1-10/+8
Also diagnose changes to primary keys and establish the 'alters' association.
2013-04-10Add changelog support for add, drop, and later columnBoris Kolpackov1-0/+20
2013-04-10Add support for maintaining log of database model changesBoris Kolpackov1-0/+18
2013-04-10Add support for copying database modelsBoris Kolpackov1-0/+8
2013-04-10Add changelog, changeset, and add_table semantics nodesBoris Kolpackov1-0/+13
2013-04-10Add initial support for database model serialization to XMLBoris Kolpackov1-35/+8
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2012-07-17Implement multi-pass table dropping for SQL ServerBoris Kolpackov1-0/+5
We have to first drop constraints before dropping tables in case the tables are dropped in a wrong order or there are circular dependencies.
2012-01-29Update copyright yearBoris Kolpackov1-1/+1
2012-01-29Remove author field from file headerBoris Kolpackov1-1/+0
Too much effort to maintain.
2012-01-26Implement support for database schemaBoris Kolpackov1-2/+2
New pragma qualifier: namespace. New pragma specifier: schema. The table specifier was extended to accept a schema prefix. New option: --default- schema. The common/schema test was extended to cover the new functionality.
2011-10-24Generate database schema from database model instead of C++ modelBoris Kolpackov1-0/+56
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.