class CreateStaticBlockTranslations < ActiveRecord::Migration def up StaticBlocks::StaticBlock.create_translation_table!({ content: :text }, { migrate_data: true }) end def down StaticBlock.drop_translation_table! migrate_data: true end end