aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/migration_test.rb
diff options
context:
space:
mode:
authorJosh Susser <josh@hasmanythrough.com>2012-12-03 21:26:35 -0800
committerJosh Susser <josh@hasmanythrough.com>2012-12-03 21:26:35 -0800
commit94ef7b515b9bd026a0ed67ef7dabbf0b4ab554e3 (patch)
treeb278c0b6c32c32639597a80c747daef564836306 /activerecord/test/cases/migration_test.rb
parentf02d2185ebbe01f455a9a91216ff7094b014ea72 (diff)
downloadrails-94ef7b515b9bd026a0ed67ef7dabbf0b4ab554e3.tar.gz
rails-94ef7b515b9bd026a0ed67ef7dabbf0b4ab554e3.tar.bz2
rails-94ef7b515b9bd026a0ed67ef7dabbf0b4ab554e3.zip
style cleanup
Diffstat (limited to 'activerecord/test/cases/migration_test.rb')
-rw-r--r--activerecord/test/cases/migration_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/migration_test.rb b/activerecord/test/cases/migration_test.rb
index 2c74bb6719..60e5a29965 100644
--- a/activerecord/test/cases/migration_test.rb
+++ b/activerecord/test/cases/migration_test.rb
@@ -346,7 +346,7 @@ class MigrationTest < ActiveRecord::TestCase
assert_nothing_raised {
Person.connection.create_table :binary_testings do |t|
- t.column "data", :binary, :null => false
+ t.column :data, :binary, :null => false
end
}