Skip to content

Commit

Permalink
Merge pull request #2262 from cakephp/MasterOdin-patch-1
Browse files Browse the repository at this point in the history
Reword null option description
  • Loading branch information
dereuromark committed Jan 24, 2024
2 parents cb5afbf + b8bc5c2 commit e039a72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/en/migrations.rst
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ Option Description
limit set maximum length for strings, also hints column types in adapters (see note below)
length alias for ``limit``
default set default value or action
null allow ``NULL`` values, defaults to false if `identity` option is set to true, else defaults to true
null allow ``NULL`` values, defaults to ``true`` (setting ``identity`` will override default to ``false``)
after specify the column that a new column should be placed after, or use ``\Phinx\Db\Adapter\MysqlAdapter::FIRST`` to place the column at the start of the table *(only applies to MySQL)*
comment set a text comment on the column
======= ===========
Expand Down Expand Up @@ -806,7 +806,7 @@ For ``smallinteger``, ``integer`` and ``biginteger`` columns:
======== ===========
Option Description
======== ===========
identity enable or disable automatic incrementing
identity enable or disable automatic incrementing (if enabled, will set ``null: false`` if ``null`` option is not set)
signed enable or disable the ``unsigned`` option *(only applies to MySQL)*
======== ===========

Expand Down

0 comments on commit e039a72

Please sign in to comment.