You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
458 B
15 lines
458 B
-- 2026-03-22-add-similarity-cache.sql
|
|
-- Placeholder migration for adding a similarity_cache table
|
|
-- Decision: Keep SQL commented out so CI does not accidentally modify databases.
|
|
|
|
/*
|
|
-- Example (commented out):
|
|
CREATE TABLE similarity_cache (
|
|
id SERIAL PRIMARY KEY,
|
|
key TEXT NOT NULL,
|
|
vector FLOAT8[] NOT NULL,
|
|
created_at TIMESTAMP WITH TIME ZONE DEFAULT now()
|
|
);
|
|
*/
|
|
|
|
-- No executable SQL in this file. Intentionally left as a safe no-op.
|
|
|