mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
16 lines
356 B
Ruby
16 lines
356 B
Ruby
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
|