Feature: Label APIs (#931)
This commit is contained in:
20
app/models/label.rb
Normal file
20
app/models/label.rb
Normal file
@@ -0,0 +1,20 @@
|
||||
# == 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
|
||||
Reference in New Issue
Block a user