xref: /plugin/aichat/db/update0001.sql (revision f43684f4ba129efc0e676fa29f0c43f710a324e2)
1CREATE TABLE embeddings
2(
3    id        INTEGER   NOT NULL PRIMARY KEY,
4    page      TEXT      NOT NULL,
5    embedding BLOB      NOT NULL,
6    chunk     TEXT      NOT NULL,
7    created   TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
8);
9
10CREATE INDEX idx_embeddings_page ON embeddings (page);
11