Add tickets to registration segment
This commit is contained in:
parent
abfb0884a1
commit
e2fd1bbd69
10 changed files with 42 additions and 2 deletions
|
|
@ -0,0 +1,5 @@
|
|||
class AddTicketDescriptionToConference < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :conferences, :ticket_description, :text
|
||||
end
|
||||
end
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
class AddDescriptionToSupporterLevel < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :supporter_levels, :description, :text
|
||||
end
|
||||
end
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
class AddTicketPriceToSupporterLevel < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :supporter_levels, :ticket_price, :string
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue