2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
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
|