6 lines
144 B
Ruby
6 lines
144 B
Ruby
|
|
class AddTicketDescriptionToConference < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
add_column :conferences, :ticket_description, :text
|
||
|
|
end
|
||
|
|
end
|