2023-08-06 17:49:58 -07:00
|
|
|
class TranslateItems < ActiveRecord::Migration[4.2]
|
2013-01-11 14:20:06 -08:00
|
|
|
def self.up
|
|
|
|
rename_table :objects, :items
|
|
|
|
Item.create_translation_table!({
|
|
|
|
:name => :string,
|
|
|
|
:description => :text,
|
|
|
|
:rarity => :string
|
|
|
|
}, {
|
|
|
|
:migrate_data => true
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
Item.drop_translation_table! :migrate_data => true
|
|
|
|
rename_table :items, :objects
|
|
|
|
end
|
|
|
|
end
|