diff options
author | Andrey Andreev <narf@devilix.net> | 2016-11-22 12:23:33 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-11-22 12:23:33 +0100 |
commit | 21b7a2a2d00bd5645b2ca1afcfa4098e207292a4 (patch) | |
tree | 2d53b72677b4890e843af0e9d92a9358295b141a /user_guide_src/source | |
parent | 8d11232616fdf984ff8b9bb295693bdea91d7d8e (diff) |
Add support for CURRENT_TIMESTAMP (and similar) defaults to date/time fields in DB Forge
As requested in #4852
Diffstat (limited to 'user_guide_src/source')
-rw-r--r-- | user_guide_src/source/changelog.rst | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/user_guide_src/source/changelog.rst b/user_guide_src/source/changelog.rst index 9c3058ce5..692d06833 100644 --- a/user_guide_src/source/changelog.rst +++ b/user_guide_src/source/changelog.rst @@ -31,12 +31,16 @@ Release Date: Not Released - Changed method ``clear()`` to also reset captions. -- Database +- :doc:`Database <database/index>` - Changed method ``initialize()`` to return void and instead throw a ``RuntimeException`` in case of failure. - Changed method ``db_connect()`` to always set the connection character set (if supported by the driver) and to fail if it can't. - Removed method ``db_set_charset()`` and the ability to change a connection character set at runtime. + - :doc:`Database Forge <database/forge>`: + + - Added support for declaring date/time type fields default values as ``CURRENT_TIMESTAMP`` and similar. + - Helpers - Added new function :php:func:`ordinal_format()` to :doc:`Inflector Helper <helpers/inflector_helper>`. |