2020-09-25 21:02:34 +00:00
|
|
|
# == Schema Information
|
|
|
|
#
|
2022-05-16 08:29:59 +00:00
|
|
|
# Table name: folders
|
2020-09-25 21:02:34 +00:00
|
|
|
#
|
|
|
|
# id :bigint not null, primary key
|
|
|
|
# name :string
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# account_id :integer not null
|
|
|
|
# category_id :integer not null
|
|
|
|
#
|
2022-05-16 08:29:59 +00:00
|
|
|
class Folder < ApplicationRecord
|
2020-09-25 21:02:34 +00:00
|
|
|
belongs_to :account
|
|
|
|
belongs_to :category
|
|
|
|
has_many :articles, dependent: :nullify
|
|
|
|
|
|
|
|
validates :account_id, presence: true
|
|
|
|
validates :category_id, presence: true
|
|
|
|
validates :name, presence: true
|
|
|
|
end
|