Class: CreateSeorelTranslations

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/seorel/templates/globalize_migration.rb

Instance Method Summary collapse

Instance Method Details

#downObject



10
11
12
# File 'lib/generators/seorel/templates/globalize_migration.rb', line 10

def down
  Seorel::Seorel.drop_translation_table!
end

#upObject



2
3
4
5
6
7
8
# File 'lib/generators/seorel/templates/globalize_migration.rb', line 2

def up
  Seorel::Seorel.create_translation_table!({
                                             title: :string,
                                             description: :string,
                                             image: :string
                                           }, migrate_data: true)
end