mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-17 17:04:48 +00:00
29 lines
722 B
Ruby
29 lines
722 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AiSummary < ActiveRecord::Base
|
||
|
belongs_to :target, polymorphic: true
|
||
|
|
||
|
def mark_as_outdated
|
||
|
@outdated = true
|
||
|
end
|
||
|
|
||
|
def outdated
|
||
|
@outdated || false
|
||
|
end
|
||
|
end
|
||
|
|
||
|
# == Schema Information
|
||
|
#
|
||
|
# Table name: ai_summaries
|
||
|
#
|
||
|
# id :bigint not null, primary key
|
||
|
# target_id :integer not null
|
||
|
# target_type :string not null
|
||
|
# content_range :int4range
|
||
|
# summarized_text :string not null
|
||
|
# original_content_sha :string not null
|
||
|
# algorithm :string not null
|
||
|
# created_at :datetime not null
|
||
|
# updated_at :datetime not null
|
||
|
#
|