ability to track resources used in conference

This commit is contained in:
shlok007 2017-02-06 16:11:22 +05:30
parent 945b4aac60
commit 3065766da9
17 changed files with 281 additions and 2 deletions

View file

@ -0,0 +1,11 @@
class CreateResourcesTable < ActiveRecord::Migration
def change
create_table :resources do |t|
t.string :name
t.text :description
t.integer :quantity
t.integer :used, default: 0
t.references :conference
end
end
end