Sha256: 5e6da35f58037d4fbd7758dd1a5007cb1c769d9f164c1f772bb922bba2127bef
Contents?: true
Size: 1.12 KB
Versions: 20
Compression:
Stored size: 1.12 KB
Contents
# frozen_string_literal: true # == Schema Information # # Table name: accounts # # id :bigint not null, primary key # discarded_at :datetime # nombre :string not null # plan :integer not null # created_at :datetime not null # updated_at :datetime not null # actualizado_por_id :bigint indexed # creado_por_id :bigint indexed # # Foreign Keys # # fk_rails_... (actualizado_por_id => users.id) # fk_rails_... (creado_por_id => users.id) # class Account < ApplicationRecord audited include Discard::Model include Hashid::Rails has_many :user_accounts has_many :users, through: :user_accounts belongs_to :creado_por, optional: true, class_name: 'User' belongs_to :actualizado_por, optional: true, class_name: 'User' enumerize :plan, in: { completar: 0, los: 1, valores: 2 } validates :plan, :nombre, presence: true ransacker :search do |parent| parent.table[:nombre] end before_validation do self.plan = 0 if plan.blank? end def to_s nombre end end
Version data entries
20 entries across 20 versions & 1 rubygems