osem-fcy/db/migrate/20140605055802_create_sponsorship_levels.rb
2014-06-06 15:40:32 +05:30

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