Class: CreateTranslations
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateTranslations
- Defined in:
- lib/generators/merrycms/templates/create_translations_migration.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
14 15 16 |
# File 'lib/generators/merrycms/templates/create_translations_migration.rb', line 14 def self.down drop_table :translations end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 |
# File 'lib/generators/merrycms/templates/create_translations_migration.rb', line 2 def self.up create_table :translations do |t| t.string :locale t.string :key t.text :value t.text :interpolations t.boolean :is_proc, :default => false t. end end |