Skip to content

Commit 1447ed8

Browse files
committed
Fix CI not running on MySQL 5.5
``` % bin/test -w -a mysql2 Using mysql2 /Users/kamipo/src/github.com/rails/rails/vendor/bundle/ruby/3.0.0/bundler/gems/mysql2-7f4e844fccf6/lib/mysql2/client.rb:131:in `_query': Mysql2::Error: The used table type doesn't support FULLTEXT indexes (ActiveRecord::StatementInvalid) ```
1 parent 000578e commit 1447ed8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

activerecord/test/schema/mysql2_specific_schema.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
t.index :var_binary
4848
end
4949

50-
create_table :key_tests, force: true do |t|
50+
create_table :key_tests, force: true, options: "ENGINE=MyISAM" do |t|
5151
t.string :awesome
5252
t.string :pizza
5353
t.string :snacks

0 commit comments

Comments
 (0)