mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
Adds email template and settings for conference dates updates
This commit is contained in:
parent
aee73fb442
commit
75cf1123cf
4 changed files with 16 additions and 1 deletions
|
|
@ -0,0 +1,7 @@
|
|||
class AddConferenceDatesUpdatesToEmailSettings < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :email_settings, :send_on_updated_conference_dates, :boolean, default: true
|
||||
add_column :email_settings, :updated_conference_dates_subject, :string
|
||||
add_column :email_settings, :updated_conference_dates_template, :text
|
||||
end
|
||||
end
|
||||
|
|
@ -164,6 +164,9 @@ ActiveRecord::Schema.define(version: 20140714141156) do
|
|||
t.string "accepted_subject"
|
||||
t.string "rejected_subject"
|
||||
t.string "confirmed_without_registration_subject"
|
||||
t.boolean "send_on_updated_conference_dates", default: true
|
||||
t.string "updated_conference_dates_subject"
|
||||
t.text "updated_conference_dates_template"
|
||||
end
|
||||
|
||||
create_table "event_attachments", force: true do |t|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue