mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-24 13:45:44 +08:00
6 lines
171 B
Ruby
6 lines
171 B
Ruby
class StoppedSponsorship < ApplicationRecord
|
|
belongs_to :sponsor, class_name: 'User'
|
|
belongs_to :developer, class_name: 'User'
|
|
validates :amount, presence: true
|
|
end
|