Sha256: 63c0e2d7873a7ea5b50580bdcd0e12a4fc35404ac8c9341896bd28b675047fbc

Contents?: true

Size: 327 Bytes

Versions: 7

Compression:

Stored size: 327 Bytes

Contents

# This migration comes from spotlight (originally 20140128155152)
class CreateRoles < ActiveRecord::Migration
  def change
    create_table :spotlight_roles do |t|
      t.references :exhibit
      t.references :user
      t.string :role
    end

    add_index :spotlight_roles, [:exhibit_id, :user_id], unique: true
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
blacklight-spotlight-0.3.1 spec/internal/db/migrate/20150303163362_create_roles.spotlight.rb
blacklight-spotlight-0.3.0 spec/internal/db/migrate/20150302231323_create_roles.spotlight.rb
blacklight-spotlight-0.2.0 spec/internal/db/migrate/20150120185721_create_roles.spotlight.rb
blacklight-spotlight-0.1.0 spec/internal/db/migrate/20140603144407_create_roles.spotlight.rb
blacklight-spotlight-0.0.3 spec/internal/db/migrate/20140221181122_create_roles.spotlight.rb
blacklight-spotlight-0.0.2 spec/internal/db/migrate/20140213201433_create_roles.spotlight.rb
blacklight-spotlight-0.0.1 spec/internal/db/migrate/20140206235511_create_roles.spotlight.rb