14 lines
261 B
Ruby
14 lines
261 B
Ruby
|
class AddTranslationsToHalls < ActiveRecord::Migration
|
||
|
def self.up
|
||
|
Hall.create_translation_table!({
|
||
|
:name => :string
|
||
|
}, {
|
||
|
:migrate_data => true
|
||
|
})
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
Hall.drop_translation_table! :migrate_data => true
|
||
|
end
|
||
|
end
|