Retrospring/db/migrate/20221226101907_add_failures...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
197 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddFailuresToWebPushSubscriptions < ActiveRecord::Migration[6.1]
def change
add_column :web_push_subscriptions, :failures, :integer, default: 0
end
end