# JdbcChatMemoryRepository on PostgreSQL 16

Table created by initialize-schema=always:
  conversation_id  character varying            (36)
  content          text                         
  type             character varying            (10)
  timestamp        timestamp without time zone  
  sequence_id      bigint                       

After one call, rows for the conversation:
  seq=0  USER      My name is Priya
  seq=1  ASSISTANT Nice to meet you, Priya.

New repository + new memory over the same database, then "What is my name?":
  reply: Your name is Priya.
  findConversationIds() returns every conversation in the table: [6f0a1c9e-2b7d-4c55-9a53-0d1f3e7a2b10]
