SumOfUs/Champaign

View on GitHub
app/models/actionkit_page.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

# == Schema Information
#
# Table name: actionkit_pages
#
#  id                     :integer          not null, primary key
#  actionkit_id           :integer          not null
#  actionkit_page_type_id :integer          not null
#
# Foreign Keys
#
#  fk_rails_...  (actionkit_page_type_id => actionkit_page_types.id)
#

class ActionkitPage < ApplicationRecord
  belongs_to :page
  has_paper_trail
end