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

11 lines
234 B
Ruby

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