aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-06-10 19:36:19 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-06-10 19:36:19 +0900
commitfe8658eb3d2f13491c2495d690064ca84c493d10 (patch)
treea27d2ed11e2b570ef72ff9619e9a40eb4fe624df /activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
parentddea3164250ed5f3886f07cbbc01727fd6dff99c (diff)
downloadrails-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/active_record/connection_adapters/abstract/schema_statements.rb')
-rw-r--r--activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb3
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> -