2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2014-07-11 18:21:23 +05:30
|
|
|
class AddVenueUpdateToEmailSettings < ActiveRecord::Migration
|
|
|
|
|
def change
|
|
|
|
|
add_column :email_settings, :send_on_venue_update, :boolean, default: true
|
|
|
|
|
add_column :email_settings, :venue_update_subject, :string
|
|
|
|
|
add_column :email_settings, :venue_update_template, :text
|
|
|
|
|
end
|
|
|
|
|
end
|