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

17 lines
313 B
Ruby
Executable File

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