aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema/mysql2_specific_schema.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-07-07 02:56:32 +0900
committerGitHub <noreply@github.com>2019-07-07 02:56:32 +0900
commita05a9b0e26d055131a4ed93f2b68abd4f792b376 (patch)
tree28c535f317cfc4e783b94008ae1a74204e2b5e3d /activerecord/test/schema/mysql2_specific_schema.rb
parent6a9061481627aad117dc5147da33bff309648ddb (diff)
parent52729fb5f24ff96c812327ff045b9a1921d37a7c (diff)
downloadrails-a05a9b0e26d055131a4ed93f2b68abd4f792b376.tar.gz
rails-a05a9b0e26d055131a4ed93f2b68abd4f792b376.tar.bz2
rails-a05a9b0e26d055131a4ed93f2b68abd4f792b376.zip
Merge pull request #36604 from kamipo/fix_schema_dumping_enum
MySQL: Fix schema dumping `enum` and `set` columns correctly
Diffstat (limited to 'activerecord/test/schema/mysql2_specific_schema.rb')
-rw-r--r--activerecord/test/schema/mysql2_specific_schema.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/activerecord/test/schema/mysql2_specific_schema.rb b/activerecord/test/schema/mysql2_specific_schema.rb
index b143035213..911ac808c6 100644
--- a/activerecord/test/schema/mysql2_specific_schema.rb
+++ b/activerecord/test/schema/mysql2_specific_schema.rb
@@ -62,10 +62,6 @@ ActiveRecord::Schema.define do
t.binary :binary_column, limit: 1
end
- create_table :enum_tests, id: false, force: true do |t|
- t.column :enum_column, "ENUM('text','blob','tiny','medium','long','unsigned','bigint')"
- end
-
execute "DROP PROCEDURE IF EXISTS ten"
execute <<~SQL