Sha256: 221f885dbeed7db917dac89dab9723f9da103cc8e61dcb23e1fbe918407e2db1

Contents?: true

Size: 679 Bytes

Versions: 62

Compression:

Stored size: 679 Bytes

Contents

class CreateSpotlightPages < ActiveRecord::Migration
  def change
    create_table :spotlight_pages do |t|
      t.string     :title
      t.string     :type
      t.string :slug
      t.string :scope
      t.text       :content
      t.integer    :weight, default: 50
      t.boolean    :published
      t.references :exhibit
      t.integer :created_by_id
      t.integer :last_edited_by_id
      t.timestamps
      t.integer :parent_page_id
      t.boolean :display_sidebar
      t.boolean :display_title
    end
    add_index :spotlight_pages, :exhibit_id
    add_index :spotlight_pages, :parent_page_id
    add_index :spotlight_pages, [:slug,:scope], unique: true
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
blacklight-spotlight-0.34.1 db/migrate/20131119213142_create_spotlight_pages.rb
blacklight-spotlight-0.34.0 db/migrate/20131119213142_create_spotlight_pages.rb
blacklight-spotlight-0.33.3 db/migrate/20131119213142_create_spotlight_pages.rb
blacklight-spotlight-0.33.2 db/migrate/20131119213142_create_spotlight_pages.rb
blacklight-spotlight-0.33.1 db/migrate/20131119213142_create_spotlight_pages.rb
blacklight-spotlight-0.33.0 db/migrate/20131119213142_create_spotlight_pages.rb
blacklight-spotlight-0.32.0 db/migrate/20131119213142_create_spotlight_pages.rb
blacklight-spotlight-0.31.0 db/migrate/20131119213142_create_spotlight_pages.rb
blacklight-spotlight-0.30.0 db/migrate/20131119213142_create_spotlight_pages.rb
blacklight-spotlight-0.29.1 db/migrate/20131119213142_create_spotlight_pages.rb
blacklight-spotlight-0.29.0 db/migrate/20131119213142_create_spotlight_pages.rb
blacklight-spotlight-0.28.3 db/migrate/20131119213142_create_spotlight_pages.rb
blacklight-spotlight-0.28.2 db/migrate/20131119213142_create_spotlight_pages.rb
blacklight-spotlight-0.28.1 db/migrate/20131119213142_create_spotlight_pages.rb
blacklight-spotlight-0.28.0 db/migrate/20131119213142_create_spotlight_pages.rb
blacklight-spotlight-0.27.0 db/migrate/20131119213142_create_spotlight_pages.rb
blacklight-spotlight-0.26.1 db/migrate/20131119213142_create_spotlight_pages.rb
blacklight-spotlight-0.26.0 db/migrate/20131119213142_create_spotlight_pages.rb
blacklight-spotlight-0.25.0 db/migrate/20131119213142_create_spotlight_pages.rb
blacklight-spotlight-0.24.0 db/migrate/20131119213142_create_spotlight_pages.rb