Files
fetsite/db/migrate/20130124000300_translate_lvas.rb
Thomas Blazek cc002d4291 Init
2013-07-22 15:49:19 +02:00

15 lines
259 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