Add tickets to registration segment

This commit is contained in:
Gopesh Tulsyan 2014-05-29 20:23:33 +05:30
parent abfb0884a1
commit e2fd1bbd69
10 changed files with 42 additions and 2 deletions

View file

@ -0,0 +1,5 @@
class AddTicketDescriptionToConference < ActiveRecord::Migration
def change
add_column :conferences, :ticket_description, :text
end
end

View file

@ -0,0 +1,5 @@
class AddDescriptionToSupporterLevel < ActiveRecord::Migration
def change
add_column :supporter_levels, :description, :text
end
end

View file

@ -0,0 +1,5 @@
class AddTicketPriceToSupporterLevel < ActiveRecord::Migration
def change
add_column :supporter_levels, :ticket_price, :string
end
end