about summary refs log tree commit diff
path: root/db/migrate/20200818160057_create_collection_items.rb
blob: 88796ce0ef0af6af1f843f822e25791b4038ae88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
class CreateCollectionItems < ActiveRecord::Migration[5.2]
  def change
    create_table :collection_items do |t|
      t.references :account, index: true, foreign_key: { on_delete: :cascade }
      t.string :uri, null: false, index: { unique: true }
      t.boolean :processed, null: false, default: false
    end

    add_index :collection_items, :id, name: 'unprocessed_collection_item_ids', where: 'processed = FALSE', order: { id: :desc }
    add_index :collection_items, :account_id, name: 'unprocessed_collection_item_account_ids', where: 'processed = FALSE'
  end
end