diff options
author | a3gis <a3gis@users.noreply.github.com> | 2014-07-25 18:32:04 +0200 |
---|---|---|
committer | a3gis <a3gis@users.noreply.github.com> | 2014-07-25 18:32:04 +0200 |
commit | 775cc7de6081f823a97a7803a6eb4d373b5c82dd (patch) | |
tree | 6b781dc09771754875946388dd5f05ed3820a785 /activerecord | |
parent | 8f32ddba776426384b46feaededaf57bb01f5aef (diff) | |
download | rails-775cc7de6081f823a97a7803a6eb4d373b5c82dd.tar.gz rails-775cc7de6081f823a97a7803a6eb4d373b5c82dd.tar.bz2 rails-775cc7de6081f823a97a7803a6eb4d373b5c82dd.zip |
Remove references to SQLite3Column from documentation
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/attribute_methods.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/attribute_methods.rb b/activerecord/lib/active_record/attribute_methods.rb index 1cdb530815..a2bb78dfcc 100644 --- a/activerecord/lib/active_record/attribute_methods.rb +++ b/activerecord/lib/active_record/attribute_methods.rb @@ -193,7 +193,7 @@ module ActiveRecord # # person = Person.new # person.column_for_attribute(:name) # the result depends on the ConnectionAdapter - # # => #<ActiveRecord::ConnectionAdapters::SQLite3Column:0x007ff4ab083980 @name="name", @sql_type="varchar(255)", @null=true, ...> + # # => #<ActiveRecord::ConnectionAdapters::Column:0x007ff4ab083980 @name="name", @sql_type="varchar(255)", @null=true, ...> # # person.column_for_attribute(:nothing) # # => nil |