mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
Add relevance field for track requests
The requester can now provide more info about the track and himself
This commit is contained in:
parent
3d250ecf75
commit
2ff4c6d6b2
10 changed files with 40 additions and 5 deletions
5
db/migrate/20170726065629_add_relevance_to_tracks.rb
Normal file
5
db/migrate/20170726065629_add_relevance_to_tracks.rb
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
class AddRelevanceToTracks < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :tracks, :relevance, :text
|
||||
end
|
||||
end
|
||||
|
|
@ -525,6 +525,7 @@ ActiveRecord::Schema.define(version: 20170807092805) do
|
|||
t.integer "room_id"
|
||||
t.date "start_date"
|
||||
t.date "end_date"
|
||||
t.text "relevance"
|
||||
end
|
||||
|
||||
add_index "tracks", ["room_id"], name: "index_tracks_on_room_id"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue