Class: IsTranslatableMigration
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- IsTranslatableMigration
- Defined in:
- lib/generators/is_translatable/templates/migration.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
14 15 16 |
# File 'lib/generators/is_translatable/templates/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/is_translatable/templates/migration.rb', line 2 def self.up create_table :translations do |t| t.string :translatable_type , :default => '' t.integer :translatable_id t.string :kind t.string :locale, :limit => 5 t.text :translation end add_index :translations, [:translatable_id, :translatable_type, :kind, :locale], :name => 'index_translations' end |