n8n/docs/generated/postgres-schema/public.agents_memory_entry_locks.md
Svetoslav Dekov fdd4e33f9c
feat(core): Add availableInMCP column to agents (#34665)
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
2026-07-24 14:09:04 +00:00

3.0 KiB

public.agents_memory_entry_locks

Columns

Name Type Default Nullable Children Parents Comment
agentId varchar(36) false public.agents Agent that owns this lock
createdAt timestamp(3) with time zone CURRENT_TIMESTAMP(3) false
heldUntil timestamp(3) with time zone false
holderId varchar(64) false Ephemeral background-task lock owner token
resourceId varchar(255) false public.agents_resources agents_resources.id partition locked for episodic indexing
updatedAt timestamp(3) with time zone CURRENT_TIMESTAMP(3) false

Constraints

Name Type Definition
FK_0ccf6d9ea6f44fa1c264fc2f795 FOREIGN KEY FOREIGN KEY ("agentId") REFERENCES agents(id) ON DELETE CASCADE
FK_9594c0983cfee1c8ff49b05848b FOREIGN KEY FOREIGN KEY ("resourceId") REFERENCES agents_resources(id) ON DELETE CASCADE
PK_a8e0f570d04a174292bea104ae6 PRIMARY KEY PRIMARY KEY ("agentId", "resourceId")
agents_memory_entry_locks_agentId_not_null n NOT NULL "agentId"
agents_memory_entry_locks_createdAt_not_null n NOT NULL "createdAt"
agents_memory_entry_locks_heldUntil_not_null n NOT NULL "heldUntil"
agents_memory_entry_locks_holderId_not_null n NOT NULL "holderId"
agents_memory_entry_locks_resourceId_not_null n NOT NULL "resourceId"
agents_memory_entry_locks_updatedAt_not_null n NOT NULL "updatedAt"

Indexes

Name Definition
IDX_9594c0983cfee1c8ff49b05848 CREATE INDEX "IDX_9594c0983cfee1c8ff49b05848" ON public.agents_memory_entry_locks USING btree ("resourceId")
PK_a8e0f570d04a174292bea104ae6 CREATE UNIQUE INDEX "PK_a8e0f570d04a174292bea104ae6" ON public.agents_memory_entry_locks USING btree ("agentId", "resourceId")

Relations

erDiagram

"public.agents_memory_entry_locks" }o--|| "public.agents" : "FOREIGN KEY (#quot;agentId#quot;) REFERENCES agents(id) ON DELETE CASCADE"
"public.agents_memory_entry_locks" }o--|| "public.agents_resources" : "FOREIGN KEY (#quot;resourceId#quot;) REFERENCES agents_resources(id) ON DELETE CASCADE"

"public.agents_memory_entry_locks" {
  varchar_36_ agentId FK
  timestamp_3__with_time_zone createdAt
  timestamp_3__with_time_zone heldUntil
  varchar_64_ holderId
  varchar_255_ resourceId FK
  timestamp_3__with_time_zone updatedAt
}
"public.agents" {
  varchar_36_ activeVersionId FK
  boolean availableInMCP
  timestamp_3__with_time_zone createdAt
  varchar_36_ id
  json integrations
  varchar_128_ name
  varchar_255_ projectId FK
  json schema
  json skills
  json tools
  timestamp_3__with_time_zone updatedAt
  varchar_36_ versionId
}
"public.agents_resources" {
  timestamp_3__with_time_zone createdAt
  varchar_255_ id
  text metadata
  timestamp_3__with_time_zone updatedAt
}

Generated by tbls