Sha256: d8c86c0e1b10eba2c1775812085927eccedf3ae0f1a40701f3c52b8f3e441670
Contents?: true
Size: 627 Bytes
Versions: 62
Compression:
Stored size: 627 Bytes
Contents
class UpdateCollectionTypeColumnOptions < ActiveRecord::Migration<%= migration_version %> 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
62 entries across 62 versions & 1 rubygems