aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2014-01-11 17:31:15 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2014-01-11 17:31:15 -0800
commitc4e9dc273a85b3c6aa2d265fd5af74971028fd05 (patch)
treef5c2fb6918afc71f673759b3d4243ddab29d48b9 /activerecord
parent11e8badb16876e6bd72c874631d25aec41dad293 (diff)
downloadrails-c4e9dc273a85b3c6aa2d265fd5af74971028fd05.tar.gz
rails-c4e9dc273a85b3c6aa2d265fd5af74971028fd05.tar.bz2
rails-c4e9dc273a85b3c6aa2d265fd5af74971028fd05.zip
force table creation
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/test/cases/hot_compatibility_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/hot_compatibility_test.rb b/activerecord/test/cases/hot_compatibility_test.rb
index 96e581ab4c..e671979bcf 100644
--- a/activerecord/test/cases/hot_compatibility_test.rb
+++ b/activerecord/test/cases/hot_compatibility_test.rb
@@ -5,7 +5,7 @@ class HotCompatibilityTest < ActiveRecord::TestCase
setup do
@klass = Class.new(ActiveRecord::Base) do
- connection.create_table :hot_compatibilities do |t|
+ connection.create_table :hot_compatibilities, :force => true do |t|
t.string :foo
t.string :bar
end