This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-08-25 01:41:18 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: status_pins
|
|
|
|
#
|
2018-04-23 11:29:17 +02:00
|
|
|
# id :bigint(8) not null, primary key
|
|
|
|
# account_id :bigint(8) not null
|
|
|
|
# status_id :bigint(8) not null
|
2017-08-25 18:50:52 +02:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2017-08-25 01:41:18 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
class StatusPin < ApplicationRecord
|
2018-01-19 20:56:47 +01:00
|
|
|
belongs_to :account
|
|
|
|
belongs_to :status
|
2017-08-25 01:41:18 +02:00
|
|
|
|
|
|
|
validates_with StatusPinValidator
|
|
|
|
end
|