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

15 lines
302 B
Ruby
Executable File

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