discourse/db/migrate/20140214151255_add_skipped_...

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

10 lines
280 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddSkippedToEmailLogs < ActiveRecord::Migration[4.2]
def change
add_column :email_logs, :skipped, :boolean, default: :false
add_column :email_logs, :skipped_reason, :string
add_index :email_logs, %i[skipped created_at]
end
end