Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to migrate from rails 2 to rails 3.

I am facing a strange problem.

The whole of application doesn't seem to pluralize the table names.

Mysql::Error: Table 'r_database.country_data' doesn't exist:

But my table has country_datas as the name.

App was working perfectly in rails 2.

share|improve this question
I have another rails 3 app. that works fine.. so nothing to do with my OS or rails configuration – Gaurav Shah Aug 22 '11 at 7:12
can you put your Gemfile in here? And can you put the backtrace of the error? – Michael Koper Aug 22 '11 at 7:13
@Michael Koper . I got the answer from Michael Johnston – Gaurav Shah Aug 22 '11 at 9:08

1 Answer

up vote 6 down vote accepted

rails 3 recognizes that (in english) data is already plural. you'll have to either add a custom inflection in initializers, or use set_table_name "country_datas" in your model.

share|improve this answer
I think indeed set_table_name is the right thing to do here. custom inflections could be bad for other translations. – Michael Koper Aug 22 '11 at 7:16
my English has gotten poor.. thanks.. – Gaurav Shah Aug 22 '11 at 7:17
Yes.. I would rather run a migration to rename the table itself.. :) – Gaurav Shah Aug 22 '11 at 7:17
@Gaurav: even though I am a native english speaker, I will name a variable that is a collection xxxx_datas rather than xxxx_data. Too confusing otherwise – Michael Johnston Aug 22 '11 at 7:21
Thanks for the advice – Gaurav Shah Aug 22 '11 at 9:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.