6 lines
170 B
Ruby
6 lines
170 B
Ruby
# Used to track when a user downloads a target file
|
|
class Dunlop::TargetFileDownload < ApplicationRecord
|
|
belongs_to :user, optional: true
|
|
belongs_to :target_file
|
|
end
|