2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2014-11-18 00:58:43 +01:00
|
|
|
class DropSplashDescriptionsAndPhoto < ActiveRecord::Migration
|
|
|
|
|
def change
|
|
|
|
|
remove_column :splashpages, :ticket_description
|
|
|
|
|
remove_column :splashpages, :sponsor_description
|
|
|
|
|
remove_column :splashpages, :registration_description
|
|
|
|
|
remove_column :splashpages, :lodging_description
|
|
|
|
|
remove_column :splashpages, :include_banner
|
|
|
|
|
remove_attachment :splashpages, :banner_photo
|
|
|
|
|
end
|
|
|
|
|
end
|