Skip to content

Commit

Permalink
Postgres DB updated (#524)
Browse files Browse the repository at this point in the history
  • Loading branch information
javipacheco authored Nov 8, 2023
1 parent 5f29db4 commit e61a96f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ val createMemoryTable: String =
uuid TEXT PRIMARY KEY,
conversation_id TEXT NOT NULL,
role TEXT NOT NULL,
content TEXT UNIQUE NOT NULL,
content TEXT NOT NULL,
index INT NOT NULL
);"""
.trimIndent()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ CREATE TABLE IF NOT EXISTS xef_memory (
uuid TEXT PRIMARY KEY,
conversation_id TEXT NOT NULL,
role TEXT NOT NULL,
content TEXT UNIQUE NOT NULL,
content TEXT NOT NULL,
index INT NOT NULL
);

Expand Down

0 comments on commit e61a96f

Please sign in to comment.