diff options
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb | 2 |
1 files changed, 1 insertions, 1 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 4f670d46d9..b8b2cf9ab1 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb @@ -403,7 +403,7 @@ module ActiveRecord end # Sets or removes a +NOT NULL+ constraint on a column. The +null+ flag - # indicates wheter the value can be +NULL+. For example + # indicates whether the value can be +NULL+. For example # # change_column_null(:users, :nickname, false) # |