Code & Deploy
Code
Models
Repos
Sign in
@setoelkahfi
/
homebrew-tap
homebrew-tap
/
app
/
models
/
star.rb
Code
Commits
Pulls
CI/CD
205
main
main
rb
6 lines
169 Bytes
Copy permalink
Copy
Raw
1
class
Star
<
ApplicationRecord
2
belongs_to
:user
3
belongs_to
:repository
,
counter_cache: :stars_count
4
5
validates
:user_id
,
uniqueness:
{
scope: :repository_id
}
6
end