2020-09-25 21:02:34 +00:00
|
|
|
# == Schema Information
|
|
|
|
#
|
2022-05-16 08:29:59 +00:00
|
|
|
# Table name: articles
|
2020-09-25 21:02:34 +00:00
|
|
|
#
|
|
|
|
# id :bigint not null, primary key
|
|
|
|
# content :text
|
|
|
|
# description :text
|
|
|
|
# status :integer
|
|
|
|
# title :string
|
|
|
|
# views :integer
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# account_id :integer not null
|
|
|
|
# author_id :integer
|
|
|
|
# category_id :integer
|
|
|
|
# folder_id :integer
|
|
|
|
# portal_id :integer not null
|
|
|
|
#
|
2022-05-16 08:29:59 +00:00
|
|
|
class Article < ApplicationRecord
|
2020-09-25 21:02:34 +00:00
|
|
|
belongs_to :account
|
|
|
|
belongs_to :category
|
|
|
|
belongs_to :portal
|
|
|
|
belongs_to :folder
|
|
|
|
belongs_to :author, class_name: 'User'
|
|
|
|
|
|
|
|
before_validation :ensure_account_id
|
|
|
|
validates :account_id, presence: true
|
|
|
|
validates :category_id, presence: true
|
|
|
|
validates :author_id, presence: true
|
|
|
|
validates :title, presence: true
|
|
|
|
validates :content, presence: true
|
|
|
|
|
|
|
|
enum status: { draft: 0, published: 1 }
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def ensure_account_id
|
|
|
|
self.account_id = portal&.account_id
|
|
|
|
end
|
|
|
|
end
|