You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
class AppliedProject < ApplicationRecord
|
|
belongs_to :user
|
|
belongs_to :project
|
|
|
|
has_many :applied_messages, as: :applied, dependent: :destroy
|
|
has_many :forge_activities, as: :forge_act, dependent: :destroy
|
|
|
|
scope :pending, -> { where(status: 0) }
|
|
end
|