diff options
author | Tobias Lütke <tobias.luetke@gmail.com> | 2005-12-24 16:55:55 +0000 |
---|---|---|
committer | Tobias Lütke <tobias.luetke@gmail.com> | 2005-12-24 16:55:55 +0000 |
commit | 87535f50e92f7567d817b455e4f7f4a44371710f (patch) | |
tree | f225d8032f3ef489a7ff84622702488b3fe78cb2 /activerecord/CHANGELOG | |
parent | ac963f06233d24f26570901a60edabed4792688d (diff) | |
download | rails-87535f50e92f7567d817b455e4f7f4a44371710f.tar.gz rails-87535f50e92f7567d817b455e4f7f4a44371710f.tar.bz2 rails-87535f50e92f7567d817b455e4f7f4a44371710f.zip |
SchemaDumper now doesn't fail anymore when there are unknown column types in the schema. Instead the table is ignored and a Comment is left in the schema.rb also added ActiveRecord::Base.schema_ignore_tables for dealing with funky tables like the tesearch2 ones.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3346 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r-- | activerecord/CHANGELOG | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG index 612da5c066..1aaaa96768 100644 --- a/activerecord/CHANGELOG +++ b/activerecord/CHANGELOG @@ -1,5 +1,9 @@ *SVN* +* Added ActiveRecord::Base.schema_ignore_tables which tells SchemaDumper which tables to ignore. Useful for tables with funky column like the ones required for tsearch2. [TobiasLuetke] + +* SchemaDumper now doesn't fail anymore when there are unknown column types in the schema. Instead the table is ignored and a Comment is left in the schema.rb. [TobiasLuetke] + * Fixed that saving a model with multiple habtm associations would only save the first one. #3244 [yanowitz-rubyonrails@quantumfoam.org, Florian Weber] * Fix change_column to work with PostgreSQL 7.x and 8.x. #3141 [wejn@box.cz, Rick Olson, Scott Barron] |