osem-fcy/db/migrate/20140524121219_create_sponsorship_levels.rb

11 lines
229 B
Ruby
Raw Normal View History

class CreateSponsorshipLevels < ActiveRecord::Migration
def change
create_table :sponsorship_levels do |t|
t.string :title
t.text :description
t.belongs_to :conference
t.timestamps
end
end
end