discourse/db/migrate/20221125001635_add_bcc_addr...

8 lines
179 B
Ruby

# frozen_string_literal: true
class AddBccAddressesToEmailLog < ActiveRecord::Migration[7.0]
def change
add_column :email_logs, :bcc_addresses, :text, null: true
end
end