Class: IsTranslatableMigration

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/rails/generators/is_translatable_migration/templates/migration.rb

Class Method Summary collapse

Class Method Details

.downObject



14
15
16
# File 'lib/rails/generators/is_translatable_migration/templates/migration.rb', line 14

def self.down
  drop_table :translations
end

.upObject



2
3
4
5
6
7
8
9
10
11
12
# File 'lib/rails/generators/is_translatable_migration/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