|
-- +goose Up
|
|
-- Drop legacy embeddings column as it's been replaced by embedding_384 and embedding_1536
|
|
ALTER TABLE sentence_embeddings
|
|
DROP COLUMN IF EXISTS embeddings;
|
|
|
|
-- +goose Down
|
|
-- No restoration action needed as embedding_384 and embedding_1536 are preserved
|