Sha256: 42edba73362bac54bf1593f7d8e94bf0acd0f70622e2a19c8e9fd9dd297167c0
Contents?: true
Size: 438 Bytes
Versions: 55
Compression:
Stored size: 438 Bytes
Contents
# This migration comes from enju_library_engine (originally 20151213070943) class AddTranslationTableToLibraryGroup < ActiveRecord::Migration[4.2] def up if defined?(Globalize) LibraryGroup.create_translation_table!({ login_banner: :text }, { migrate_data: true }) end end def down if defined?(Globalize) LibraryGroup.drop_translation_table! migrate_data: true end end end
Version data entries
55 entries across 55 versions & 10 rubygems