Pequenos ajustes em Captain::Unit (app + enterprise), migration de seed inicial dos prompts Jasmine/Daniela, schema regenerado, e atualização do README de seed_prompts pra refletir o estado atual dos modelos. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
78 lines
3.0 KiB
Ruby
78 lines
3.0 KiB
Ruby
# == Schema Information
|
|
#
|
|
# Table name: captain_units
|
|
#
|
|
# id :bigint not null, primary key
|
|
# concierge_config :jsonb not null
|
|
# inter_account_number :string
|
|
# inter_cert_content :text
|
|
# inter_cert_path :string
|
|
# inter_client_secret :string
|
|
# inter_key_content :text
|
|
# inter_key_path :string
|
|
# inter_pix_key :string
|
|
# last_synced_at :datetime
|
|
# leader_whatsapp :string
|
|
# name :string not null
|
|
# payment_receipt_review_enabled :boolean default(FALSE), not null
|
|
# plug_play_token :string
|
|
# proactive_pix_polling_enabled :boolean default(FALSE), not null
|
|
# reservation_source_tag :string
|
|
# reservations_sync_enabled :boolean
|
|
# status :string
|
|
# suite_category_images :jsonb not null
|
|
# visible_suite_categories :jsonb not null
|
|
# webhook_configured_at :datetime
|
|
# webhook_url :string
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# account_id :bigint not null
|
|
# captain_brand_id :bigint not null
|
|
# concierge_inbox_id :bigint
|
|
# inbox_id :bigint
|
|
# inter_client_id :string
|
|
# plug_play_id :string
|
|
# supabase_marca_id :uuid
|
|
# supabase_tenant_id :bigint default(1)
|
|
# supabase_unit_id :uuid
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_captain_units_on_account_id (account_id)
|
|
# index_captain_units_on_captain_brand_id (captain_brand_id)
|
|
# index_captain_units_on_concierge_inbox_id (concierge_inbox_id)
|
|
# index_captain_units_on_inbox_id (inbox_id)
|
|
# index_captain_units_on_supabase_unit_id (supabase_unit_id) UNIQUE WHERE (supabase_unit_id IS NOT NULL)
|
|
#
|
|
# Foreign Keys
|
|
#
|
|
# fk_rails_... (account_id => accounts.id)
|
|
# fk_rails_... (captain_brand_id => captain_brands.id)
|
|
# fk_rails_... (concierge_inbox_id => inboxes.id)
|
|
# fk_rails_... (inbox_id => inboxes.id)
|
|
#
|
|
|
|
class Captain::Unit < ApplicationRecord
|
|
belongs_to :account
|
|
# belongs_to :captain_brand, class_name: 'Captain::Brand', optional: true
|
|
|
|
encrypts :inter_client_secret, :inter_cert_content, :inter_key_content
|
|
|
|
validates :name, presence: true
|
|
validates :inter_pix_key, presence: true, on: :update
|
|
validates :inter_account_number, presence: true, on: :update
|
|
|
|
# Atributos resolvidos que o controller já espera ter, fallback na necessidade para arquivos (mesmo não sendo mais o padrão preferido).
|
|
def resolved_inter_cert_path
|
|
return nil if inter_cert_content.present?
|
|
|
|
inter_cert_path
|
|
end
|
|
|
|
def resolved_inter_key_path
|
|
return nil if inter_key_content.present?
|
|
|
|
inter_key_path
|
|
end
|
|
end
|