Create MVC for Booths

This commit is contained in:
nasia 2017-05-17 13:31:27 +03:00
parent e68738c154
commit da6b5b8141
9 changed files with 205 additions and 1 deletions

View file

@ -0,0 +1,14 @@
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