aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/invertible_migration_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/cases/invertible_migration_test.rb')
-rw-r--r--activerecord/test/cases/invertible_migration_test.rb4
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