class ChangeCommunicationBatchEmails < ActiveRecord::Migration[6.0]
  def change
    add_column :communication_batch_emails, :editor_type, :integer, null: false, default: 0,
      after: :description
    add_column :communication_batch_emails, :html, :text, after: :editor_type
    add_column :communication_batch_emails, :design, :text, after: :html
  end
end
