diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-06-10 19:52:22 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-10 19:52:22 +0900 |
commit | a625292c793cd1fffdcf7576ac860c259493b140 (patch) | |
tree | a27d2ed11e2b570ef72ff9619e9a40eb4fe624df | |
parent | ddea3164250ed5f3886f07cbbc01727fd6dff99c (diff) | |
parent | fe8658eb3d2f13491c2495d690064ca84c493d10 (diff) | |
download | rails-a625292c793cd1fffdcf7576ac860c259493b140.tar.gz rails-a625292c793cd1fffdcf7576ac860c259493b140.tar.bz2 rails-a625292c793cd1fffdcf7576ac860c259493b140.zip |
Merge pull request #29406 from y-yagi/remove_null_allowed_option
Remove `null_allowed` option from doc [ci skip]
-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> - |