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

10 lines
203 B
Ruby
Raw Normal View History

2014-06-05 11:56:04 +05:30
class CreateSponsorshipLevels < ActiveRecord::Migration
def change
create_table :sponsorship_levels do |t|
t.string :title
t.belongs_to :conference
t.timestamps
end
end
end