aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema/schema.rb
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-08-14 18:48:06 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2010-08-14 18:48:06 -0300
commit59a0700b56cb6dc895d5f371b08ba7a339bc2d98 (patch)
tree1b8e054727f58b3f05b5d8df56a933bcc9518715 /activerecord/test/schema/schema.rb
parentad4272922d6a42ac1fed2282bcc7bd937c85bb30 (diff)
downloadrails-59a0700b56cb6dc895d5f371b08ba7a339bc2d98.tar.gz
rails-59a0700b56cb6dc895d5f371b08ba7a339bc2d98.tar.bz2
rails-59a0700b56cb6dc895d5f371b08ba7a339bc2d98.zip
Both tests are using the same model, move the model to another file and add the missing require
Diffstat (limited to 'activerecord/test/schema/schema.rb')
-rw-r--r--activerecord/test/schema/schema.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/schema/schema.rb b/activerecord/test/schema/schema.rb
index ce7ee78aea..8017e13920 100644
--- a/activerecord/test/schema/schema.rb
+++ b/activerecord/test/schema/schema.rb
@@ -74,7 +74,7 @@ ActiveRecord::Schema.define do
t.column :name, :string
end
- create_table :booleantests, :force => true do |t|
+ create_table :booleans, :force => true do |t|
t.boolean :value
end