11 lines
229 B
Ruby
11 lines
229 B
Ruby
|
|
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
|