aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/migrations/to_copy
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2016-05-28 14:16:43 +0900
committerRyuta Kamizono <kamipo@gmail.com>2016-05-28 14:16:43 +0900
commit6cbd96aa147b827719739dff3327fd91f9b6ac9b (patch)
tree5455fd0f015bdc443ae0d91af3298e7ba5e2628d /activerecord/test/migrations/to_copy
parentd87928b666ad948c19f0299ec7c8d15757f17595 (diff)
downloadrails-6cbd96aa147b827719739dff3327fd91f9b6ac9b.tar.gz
rails-6cbd96aa147b827719739dff3327fd91f9b6ac9b.tar.bz2
rails-6cbd96aa147b827719739dff3327fd91f9b6ac9b.zip
Fix migration class names in tests
Diffstat (limited to 'activerecord/test/migrations/to_copy')
-rw-r--r--activerecord/test/migrations/to_copy/1_people_have_hobbies.rb2
-rw-r--r--activerecord/test/migrations/to_copy/2_people_have_descriptions.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/test/migrations/to_copy/1_people_have_hobbies.rb b/activerecord/test/migrations/to_copy/1_people_have_hobbies.rb
index 607113b091..76734bcd7d 100644
--- a/activerecord/test/migrations/to_copy/1_people_have_hobbies.rb
+++ b/activerecord/test/migrations/to_copy/1_people_have_hobbies.rb
@@ -1,4 +1,4 @@
-class PeopleHaveLastNames < ActiveRecord::Migration::Current
+class PeopleHaveHobbies < ActiveRecord::Migration::Current
def self.up
add_column "people", "hobbies", :text
end
diff --git a/activerecord/test/migrations/to_copy/2_people_have_descriptions.rb b/activerecord/test/migrations/to_copy/2_people_have_descriptions.rb
index d4cbddab50..7f883dbb45 100644
--- a/activerecord/test/migrations/to_copy/2_people_have_descriptions.rb
+++ b/activerecord/test/migrations/to_copy/2_people_have_descriptions.rb
@@ -1,4 +1,4 @@
-class PeopleHaveLastNames < ActiveRecord::Migration::Current
+class PeopleHaveDescriptions < ActiveRecord::Migration::Current
def self.up
add_column "people", "description", :text
end