15 lines
291 B
Ruby
15 lines
291 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.integer :conference_id
|
||
|
|
|
||
|
|
t.timestamps null: false
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|