Workshop interest

This commit is contained in:
Godwin
2015-09-13 18:30:50 -07:00
parent a90c465160
commit a0fbbc9f4f
88 changed files with 2067 additions and 819 deletions
@@ -0,0 +1,10 @@
class CreateWorkshopInterests < ActiveRecord::Migration
def change
create_table :workshop_interests do |t|
t.integer :workshop_id
t.integer :user_id
t.timestamps null: false
end
end
end