feature/share-libs
rb 8 lines 237 Bytes
Raw
1 class KaraokeFile < ApplicationRecord
2 belongs_to :audio_file
3 has_one_attached :source_file
4
5 # User can only love the file once
6 has_many :karaoke_file_lover, dependent: :destroy
7 has_many :users, through: :karaoke_file_lover
8 end