Sync of the branch

This commit is contained in:
Senad Uka
2020-06-01 18:59:15 +02:00
committed by bilal
parent 9a540efc74
commit dafef462b2
11 changed files with 199 additions and 52 deletions

View File

@@ -0,0 +1,9 @@
class CreateMatchingRequests < ActiveRecord::Migration[6.0]
def change
create_table :matching_requests do |t|
t.belongs_to :project, foreign_key: true
t.timestamps
end
end
end