Merge pull request #1261 from shlok007/resources

Ability to track resources
This commit is contained in:
Ana María Martínez Gómez 2017-02-09 10:45:51 +01:00 committed by GitHub
commit f42e4adc45
17 changed files with 265 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