extinctionrebellion/RebelsManager

View on GitHub
app/models/rebel_skill.rb

Summary

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

class RebelSkill < ApplicationRecord
  belongs_to :rebel
  belongs_to :skill
end