From 6b7861e8343400b85636d1f32917e463e309864a Mon Sep 17 00:00:00 2001 From: Sean Griffin Date: Thu, 19 Nov 2015 10:00:59 -0700 Subject: Revert "Allow specifying the default table options for mysql adapters" This reverts commit 8246b593bff71f2cebf274c133bb8917f1e094c8. There was concern about this modifying the behavior of past migrations. We're going to add an way to modify the migration generator instead. --- activerecord/test/cases/migration_test.rb | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'activerecord/test/cases') diff --git a/activerecord/test/cases/migration_test.rb b/activerecord/test/cases/migration_test.rb index 58cbb80e31..c3c204cf9f 100644 --- a/activerecord/test/cases/migration_test.rb +++ b/activerecord/test/cases/migration_test.rb @@ -1020,23 +1020,4 @@ class CopyMigrationsTest < ActiveRecord::TestCase ActiveRecord::Base.logger = old end - if current_adapter?(:Mysql2Adapter) - def test_default_table_options - config = ActiveRecord::Base.configurations['arunit'].merge( - encoding: 'utf8mb4', - default_table_options: "ENGINE=InnoDB CHARACTER SET utf8mb4", - ) - ActiveRecord::Base.establish_connection(config) - - ActiveRecord::Base.connection.create_table(:foos) do |t| - t.string :emoji - end - ActiveRecord::Base.connection.execute("INSERT INTO foos (emoji) VALUES ('💩')") - emoji = ActiveRecord::Base.connection.execute("SELECT emoji FROM foos").first.first - assert_equal "💩", emoji - ensure - ActiveRecord::Base.connection.drop_table(:foos, if_exists: true) - ActiveRecord::Base.establish_connection(:arunit) - end - end end -- cgit v1.2.3