aboutsummaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-04-08 11:13:51 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-04-10 18:46:44 +0200
commita4f25daf17392c9c4b90de60b9d777290706f667 (patch)
treee3b4903ac35eb2ec4c44cfc7ce630f5d964c7b3d /NEWS
parent2fa6a4d00945866e62d980270d5807f3abca75ab (diff)
Generate add/drop foreign key migration statements
Also add the --fkeys-deferrable-mode option. General schemas generation rework.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS8
1 files changed, 8 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index c6b2db3..899267c 100644
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,14 @@ Version 2.3.0
queries. For more information, refer to Section 4.1, "ODB Query Language"
in the ODB manual.
+ * New option, --fkeys-deferrable-mode, specifies the alternative deferrable
+ mode for foreign keys. By default, the ODB compiler generates deferred
+ foreign keys for databases that support them (SQLite, PostgreSQL, and
+ Oracle) and comments the foreign keys out for database that don't (MySQL
+ and SQL Server). This option can be used to override this behavior. Refer
+ to the ODB compiler command line interface documentation (man pages) for
+ details.
+
* New SQLite-specific exception, odb::sqlite::forced_rollback, which is
thrown if SQLite forces a transaction to roll back. For more information,
refer to Section 16.5.6, "Forced Rollback".