10 lines
235 B
Ruby
10 lines
235 B
Ruby
class CreateSponsorshipLevels < ActiveRecord::Migration
|
|
def change
|
|
create_table :sponsorship_levels do |t|
|
|
t.string :title
|
|
t.string :donation_amount
|
|
t.belongs_to :conference
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|