24 lines
753 B
Ruby
24 lines
753 B
Ruby
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: accounts
|
|
#
|
|
# id :bigint not null, primary key
|
|
# locale :string not null
|
|
# name :string not null
|
|
# timezone :string not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
class Account < ApplicationRecord
|
|
has_many :users, dependent: :destroy
|
|
has_many :encrypted_configs, dependent: :destroy
|
|
has_many :templates, dependent: :destroy
|
|
has_many :active_users, -> { active }, dependent: :destroy,
|
|
inverse_of: :account, class_name: 'User'
|
|
|
|
attribute :timezone, :string, default: 'UTC'
|
|
attribute :locale, :string, default: 'en-US'
|
|
end
|