diff options
author | Neeraj Singh <neerajdotname@gmail.com> | 2013-05-06 16:49:06 -0400 |
---|---|---|
committer | Neeraj Singh <neerajdotname@gmail.com> | 2013-05-06 16:49:06 -0400 |
commit | 86ac1d9bb2d80cc71c4ea1cb7c6f3c56dbae8f10 (patch) | |
tree | 8ddc02dde2240e9d747b6dcb3d87e4601d748ba8 /activerecord/test | |
parent | 3771e4d51122e1ec22728029bae00f121d5d4e3b (diff) | |
download | rails-86ac1d9bb2d80cc71c4ea1cb7c6f3c56dbae8f10.tar.gz rails-86ac1d9bb2d80cc71c4ea1cb7c6f3c56dbae8f10.tar.bz2 rails-86ac1d9bb2d80cc71c4ea1cb7c6f3c56dbae8f10.zip |
fix failing test caused by 3771e4d511
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/invertible_migration_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/cases/invertible_migration_test.rb b/activerecord/test/cases/invertible_migration_test.rb index 0631871bd5..428145d00b 100644 --- a/activerecord/test/cases/invertible_migration_test.rb +++ b/activerecord/test/cases/invertible_migration_test.rb @@ -61,8 +61,8 @@ module ActiveRecord class RemoveIndexMigration1 < SilentMigration def self.up create_table("horses") do |t| - t.column :name, :text - t.column :color, :text + t.column :name, :string + t.column :color, :string t.index [:name, :color] end end |