Chatwoot/app/models/label.rb

21 lines
452 B
Ruby
Raw Normal View History

2020-06-07 05:47:13 +00:00
# == Schema Information
#
# Table name: labels
#
# id :bigint not null, primary key
# color :string
# description :text
# show_on_sidebar :boolean
# title :string
# created_at :datetime not null
# updated_at :datetime not null
# account_id :bigint
#
# Indexes
#
# index_labels_on_account_id (account_id)
#
class Label < ApplicationRecord
belongs_to :account
end