aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/schema_migration.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/lib/active_record/schema_migration.rb
parentf02d2185ebbe01f455a9a91216ff7094b014ea72 (diff)
downloadrails-94ef7b515b9bd026a0ed67ef7dabbf0b4ab554e3.tar.gz
rails-94ef7b515b9bd026a0ed67ef7dabbf0b4ab554e3.tar.bz2
rails-94ef7b515b9bd026a0ed67ef7dabbf0b4ab554e3.zip
style cleanup
Diffstat (limited to 'activerecord/lib/active_record/schema_migration.rb')
-rw-r--r--activerecord/lib/active_record/schema_migration.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/schema_migration.rb b/activerecord/lib/active_record/schema_migration.rb
index 4464f54145..b2ae369eb6 100644
--- a/activerecord/lib/active_record/schema_migration.rb
+++ b/activerecord/lib/active_record/schema_migration.rb
@@ -31,10 +31,10 @@ module ActiveRecord
end
else
connection.create_table(table_name, :id => false) do |t|
- t.column "version", :string, :null => false
- t.column "migrated_at", :datetime, :null => false
- t.column "fingerprint", :string, :limit => 32
- t.column "name", :string
+ t.column :version, :string, :null => false
+ t.column :migrated_at, :datetime, :null => false
+ t.column :fingerprint, :string, :limit => 32
+ t.column :name, :string
end
connection.add_index(table_name, "version", :unique => true, :name => index_name)
end