I wonder why I would Globalize2 for translating my table columns in Rails.
Basically what Globalize2 does is to add a new table for the original one, where you have the locale column and the translated columns.
eg.
Threads: id, created_at, updated_at
Thread_translations: id, thread_id, locale, title, body, created_at, updated_at
I wonder why I should use this.
Isn't it better to just add a locale column in the original table?
What is the purpose of Globalize2 adding an extra table for this?
It can't be just for the separation, cause it makes no sense at all for me.
Thanks