made migration irreversible
This commit is contained in:
parent
fd709ed4c0
commit
e3fa414a5c
2 changed files with 19 additions and 23 deletions
|
|
@ -1,9 +1,5 @@
|
||||||
class ChangePostalcodeFormatInVenues < ActiveRecord::Migration
|
class ChangePostalcodeFormatInVenues < ActiveRecord::Migration
|
||||||
def up
|
def change
|
||||||
change_column :venues, :postalcode, :string
|
change_column :venues, :postalcode, :string
|
||||||
end
|
end
|
||||||
|
|
||||||
def down
|
|
||||||
change_column :venues, :postalcode, :integer
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
|
||||||
18
db/schema.rb
18
db/schema.rb
|
|
@ -162,10 +162,10 @@ ActiveRecord::Schema.define(version: 20150929142405) do
|
||||||
t.boolean "send_on_accepted", default: false
|
t.boolean "send_on_accepted", default: false
|
||||||
t.boolean "send_on_rejected", default: false
|
t.boolean "send_on_rejected", default: false
|
||||||
t.boolean "send_on_confirmed_without_registration", default: false
|
t.boolean "send_on_confirmed_without_registration", default: false
|
||||||
t.text "registration_email_template"
|
t.text "registration_body"
|
||||||
t.text "accepted_email_template"
|
t.text "accepted_body"
|
||||||
t.text "rejected_email_template"
|
t.text "rejected_body"
|
||||||
t.text "confirmed_email_template"
|
t.text "confirmed_without_registration_body"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at"
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at"
|
||||||
t.string "registration_subject"
|
t.string "registration_subject"
|
||||||
|
|
@ -174,19 +174,19 @@ ActiveRecord::Schema.define(version: 20150929142405) do
|
||||||
t.string "confirmed_without_registration_subject"
|
t.string "confirmed_without_registration_subject"
|
||||||
t.boolean "send_on_updated_conference_dates", default: false
|
t.boolean "send_on_updated_conference_dates", default: false
|
||||||
t.string "updated_conference_dates_subject"
|
t.string "updated_conference_dates_subject"
|
||||||
t.text "updated_conference_dates_template"
|
t.text "updated_conference_dates_body"
|
||||||
t.boolean "send_on_updated_conference_registration_dates", default: false
|
t.boolean "send_on_updated_conference_registration_dates", default: false
|
||||||
t.string "updated_conference_registration_dates_subject"
|
t.string "updated_conference_registration_dates_subject"
|
||||||
t.text "updated_conference_registration_dates_template"
|
t.text "updated_conference_registration_dates_body"
|
||||||
t.boolean "send_on_venue_update", default: false
|
t.boolean "send_on_venue_update", default: false
|
||||||
t.string "venue_update_subject"
|
t.string "venue_update_subject"
|
||||||
t.text "venue_update_template"
|
t.text "venue_update_body"
|
||||||
t.boolean "send_on_call_for_papers_dates_updates", default: false
|
t.boolean "send_on_call_for_papers_dates_updates", default: false
|
||||||
t.boolean "send_on_call_for_papers_schedule_public", default: false
|
t.boolean "send_on_call_for_papers_schedule_public", default: false
|
||||||
t.string "call_for_papers_schedule_public_subject"
|
t.string "call_for_papers_schedule_public_subject"
|
||||||
t.string "call_for_papers_dates_updates_subject"
|
t.string "call_for_papers_dates_updates_subject"
|
||||||
t.text "call_for_papers_schedule_public_template"
|
t.text "call_for_papers_schedule_public_body"
|
||||||
t.text "call_for_papers_dates_updates_template"
|
t.text "call_for_papers_dates_updates_body"
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "event_types", force: true do |t|
|
create_table "event_types", force: true do |t|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue