Sync of the branch

This commit is contained in:
Senad Uka
2020-06-01 18:59:15 +02:00
parent 858fafc3c5
commit 3690268f83
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

View File

@@ -0,0 +1,5 @@
class AddIdentifierToAppearanceReleases < ActiveRecord::Migration[6.0]
def change
add_column :appearance_releases, :identifier, :string, default: nil
end
end