Sha256: 4990a49b0f01e78f669c20bc5549533034187a159a4e487cf936d3b0e4ae64c7
Contents?: true
Size: 608 Bytes
Versions: 36
Compression:
Stored size: 608 Bytes
Contents
class UpdateCollectionTypeColumnOptions < ActiveRecord::Migration[5.2] def up change_column :hyrax_collection_types, :title, :string, unique: true change_column :hyrax_collection_types, :machine_id, :string, unique: true remove_index :hyrax_collection_types, :machine_id add_index :hyrax_collection_types, :machine_id, unique: true end def down change_column :hyrax_collection_types, :title, :string change_column :hyrax_collection_types, :machine_id, :string remove_index :hyrax_collection_types, :machine_id add_index :hyrax_collection_types, :machine_id end end
Version data entries
36 entries across 25 versions & 1 rubygems