mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-04 10:49:58 +08:00
9 lines
280 B
Ruby
9 lines
280 B
Ruby
# 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
|