Add relevance field for track requests

The requester can now provide more info about the track and himself
This commit is contained in:
AEtherC0r3 2017-07-26 14:54:10 +03:00
parent c2fa84392c
commit cdd7f614f5
10 changed files with 40 additions and 5 deletions

View file

@ -0,0 +1,5 @@
class AddRelevanceToTracks < ActiveRecord::Migration
def change
add_column :tracks, :relevance, :text
end
end