This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-08-24 16:41:18 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: status_pins
|
|
|
|
#
|
2017-11-17 15:16:48 -08:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# account_id :integer not null
|
|
|
|
# status_id :integer not null
|
2017-08-25 09:50:52 -07:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2017-08-24 16:41:18 -07:00
|
|
|
#
|
|
|
|
|
|
|
|
class StatusPin < ApplicationRecord
|
|
|
|
belongs_to :account, required: true
|
|
|
|
belongs_to :status, required: true
|
|
|
|
|
|
|
|
validates_with StatusPinValidator
|
|
|
|
end
|