Sha256: 7795d2573994ed503baab8fcf327c92d800082b7f3d0438839930b250b865276
Contents?: true
Size: 608 Bytes
Versions: 20
Compression:
Stored size: 608 Bytes
Contents
class UpdateCollectionTypeColumnOptions < ActiveRecord::Migration[5.1] 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
20 entries across 20 versions & 1 rubygems