2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2017-05-17 13:31:27 +03:00
|
|
|
class CreateBooths < ActiveRecord::Migration
|
|
|
|
|
def change
|
|
|
|
|
create_table :booths do |t|
|
|
|
|
|
t.string :title
|
|
|
|
|
t.text :description
|
|
|
|
|
t.text :reasoning
|
|
|
|
|
t.string :state
|
|
|
|
|
t.string :logo_link
|
|
|
|
|
t.string :website_url
|
|
|
|
|
t.text :submitter_relationship
|
|
|
|
|
t.references :conference
|
|
|
|
|
|
|
|
|
|
t.timestamps null: false
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|