From e59978aa867ef07e16ad64f73f1ed5cafa98d0ea Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Wed, 30 Jan 2008 23:22:58 +0000 Subject: MySQL: omit text/blob defaults from the schema instead of using an empty string. Closes #10963. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8757 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/cases/schema_dumper_test.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'activerecord/test/cases/schema_dumper_test.rb') diff --git a/activerecord/test/cases/schema_dumper_test.rb b/activerecord/test/cases/schema_dumper_test.rb index 08f4a9b421..8413fce3fa 100644 --- a/activerecord/test/cases/schema_dumper_test.rb +++ b/activerecord/test/cases/schema_dumper_test.rb @@ -84,7 +84,6 @@ if ActiveRecord::Base.connection.respond_to?(:tables) assert_no_match %r{create_table "schema_info"}, output end - def test_schema_dump_with_regexp_ignored_table stream = StringIO.new @@ -96,7 +95,6 @@ if ActiveRecord::Base.connection.respond_to?(:tables) assert_no_match %r{create_table "schema_info"}, output end - def test_schema_dump_illegal_ignored_table_value stream = StringIO.new ActiveRecord::SchemaDumper.ignore_tables = [5] @@ -108,7 +106,7 @@ if ActiveRecord::Base.connection.respond_to?(:tables) if current_adapter?(:MysqlAdapter) def test_schema_dump_should_not_add_default_value_for_mysql_text_field output = standard_dump - assert_match %r{t.text\s+"body",\s+:default => "",\s+:null => false$}, output + assert_match %r{t.text\s+"body",\s+:null => false$}, output end def test_mysql_schema_dump_should_honor_nonstandard_primary_keys -- cgit v1.2.3