mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-16 05:04:03 +00:00
11 lines
234 B
Ruby
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
|