Sha256: ff39e7a602d45ab2188abc7eb7102447f183c92160ea9dc33d8f43bd6e5e53fb

Contents?: true

Size: 409 Bytes

Versions: 4

Compression:

Stored size: 409 Bytes

Contents

# This migration comes from spotlight (originally 20140403180324)
class CreateSpotlightMainNavigations < ActiveRecord::Migration
  def change
    create_table :spotlight_main_navigations do |t|
      t.string     :label
      t.integer    :weight, default: 20
      t.string     :nav_type
      t.references :exhibit
      t.timestamps
    end
    add_index :spotlight_main_navigations, :exhibit_id
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
blacklight-spotlight-0.3.1 spec/internal/db/migrate/20150303163373_create_spotlight_main_navigations.spotlight.rb
blacklight-spotlight-0.3.0 spec/internal/db/migrate/20150302231334_create_spotlight_main_navigations.spotlight.rb
blacklight-spotlight-0.2.0 spec/internal/db/migrate/20150120185732_create_spotlight_main_navigations.spotlight.rb
blacklight-spotlight-0.1.0 spec/internal/db/migrate/20140603144418_create_spotlight_main_navigations.spotlight.rb