diff --git a/test/helper.rb b/test/helper.rb index 3b98796..887d2e0 100644 --- a/test/helper.rb +++ b/test/helper.rb @@ -80,7 +80,7 @@ def assert_no_queries def setup_database(options) ActiveRecord::Base.class_eval do - silence do + connection.create_table :employees, :force => true do |t| t.column :name, :string t.column :email, :string @@ -113,7 +113,7 @@ def setup_database(options) t.column :foo, :string t.column :bar, :string end - end + end end