diff options
-rw-r--r-- | activerecord/CHANGELOG | 2 | ||||
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 3f7bf9e808..73e4b4fe9b 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Make add_column use the options hash with the Sqlite Adapter. Closes #6464 [obrie] + * Document other options available to migration's add_column. #6419 [grg] * MySQL: all_hashes compatibility with old MysqlRes class. #6429 [Jeremy Kemper] diff --git a/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb b/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb index eb57df3d2f..a9d00e8b3f 100644 --- a/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb @@ -231,7 +231,7 @@ module ActiveRecord end def add_column(table_name, column_name, type, options = {}) #:nodoc: - super(table_name, column_name, type, options = {}) + super(table_name, column_name, type, options) # See last paragraph on http://www.sqlite.org/lang_altertable.html execute "VACUUM" end |