8 lines
179 B
Ruby
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
|