about summary refs log tree commit diff
path: root/db/migrate/20200821051721_add_retries_to_collection_items.rb
blob: 9cee437d9ac9c9fad687a4c7f0e884442c4cd1e2 (plain) (blame)
1
2
3
4
5
class AddRetriesToCollectionItems < ActiveRecord::Migration[5.2]
  def change
    add_column :collection_items, :retries, :integer, limit: 1, default: 0, null: false
  end
end