extinctionrebellion/RebelsManager

View on GitHub
app/models/working_group_enrollment.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# == Schema Information
#
# Table name: working_group_enrollments
#
#  id               :bigint           not null, primary key
#  created_at       :datetime         not null
#  updated_at       :datetime         not null
#  rebel_id         :bigint           not null
#  working_group_id :bigint           not null
#

class WorkingGroupEnrollment < ApplicationRecord
  belongs_to :rebel
  belongs_to :working_group
end