Files
fetsite/db/migrate/20130124000300_translate_lvas.rb
2013-08-23 12:07:04 +02:00

16 lines
258 B
Ruby
Executable File

class TranslateLvas < ActiveRecord::Migration
def self.up
Lva.create_translation_table!({
:desc => :text
}, {
:migrate_data => true
})
end
def self.down
Lva.drop_translation_table! :migrate_data => true
end
end