GitHub Account angelegt

This commit is contained in:
Andreas Stephanides
2013-02-12 02:05:12 +01:00
commit 3d11400d5e
216 changed files with 5031 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
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