Sha256: caade320a4fedc93a0d4b6e8a23d4d1b6b2562844db95b87e333b9be74489de3

Contents?: true

Size: 349 Bytes

Versions: 5

Compression:

Stored size: 349 Bytes

Contents

class DropTranslationTableForBusinessUnits < ActiveRecord::Migration[4.2]
  def change
    reversible do |dir|
      dir.up do
        Ecm::Staff::BusinessUnit.drop_translation_table!
      end

      dir.down do
        Ecm::Staff::BusinessUnit.create_translation_table! name: :string, description: :text, slug: :string
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ecm_staff2-3.1.1 db/migrate/20170611221519_drop_translation_table_for_business_units.rb
ecm_staff2-3.1.0 db/migrate/20170611221519_drop_translation_table_for_business_units.rb
ecm_staff2-3.0.2 db/migrate/20170611221519_drop_translation_table_for_business_units.rb
ecm_staff2-3.0.1 db/migrate/20170611221519_drop_translation_table_for_business_units.rb
ecm_staff2-3.0.0 db/migrate/20170611221519_drop_translation_table_for_business_units.rb