Sha256: 346a412959141f125da027614c6912dad70afd28d3ce000161906e2114215d28
Contents?: true
Size: 588 Bytes
Versions: 19
Compression:
Stored size: 588 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
19 entries across 19 versions & 1 rubygems