diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2017-06-10 19:36:19 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2017-06-10 19:36:19 +0900 |
commit | fe8658eb3d2f13491c2495d690064ca84c493d10 (patch) | |
tree | a27d2ed11e2b570ef72ff9619e9a40eb4fe624df /activerecord/lib | |
parent | ddea3164250ed5f3886f07cbbc01727fd6dff99c (diff) | |
download | rails-fe8658eb3d2f13491c2495d690064ca84c493d10.tar.gz rails-fe8658eb3d2f13491c2495d690064ca84c493d10.tar.bz2 rails-fe8658eb3d2f13491c2495d690064ca84c493d10.zip |
Remove `null_allowed` option from doc [ci skip]
This option was added in b9fa354. But it does not seem to work.
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb index bcb939855f..a1031ccbf5 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb @@ -512,8 +512,7 @@ module ActiveRecord # * <tt>:default</tt> - # The column's default value. Use +nil+ for +NULL+. # * <tt>:null</tt> - - # Allows or disallows +NULL+ values in the column. This option could - # have been named <tt>:null_allowed</tt>. + # Allows or disallows +NULL+ values in the column. # * <tt>:precision</tt> - # Specifies the precision for the <tt>:decimal</tt> and <tt>:numeric</tt> columns. # * <tt>:scale</tt> - |