Files
nairobi/db/migrate/20180727140800_add_banner_translations.rb
Javi Martín be25e5fc45 Use migrate_data option for globalize
This way the task to migrate the data doesn't have to be run manually if
these migrations weren't already executed.
2018-10-23 16:29:13 +02:00

18 lines
285 B
Ruby

class AddBannerTranslations < ActiveRecord::Migration
def self.up
Banner.create_translation_table!(
{
title: :string,
description: :text
},
{ migrate_data: true }
)
end
def self.down
Banner.drop_translation_table!
end
end