diff --git a/db/postgres/schema.go b/db/postgres/schema.go index cd28f90b..fd92dd20 100644 --- a/db/postgres/schema.go +++ b/db/postgres/schema.go @@ -164,7 +164,6 @@ ALTER TABLE tasks_log_parts ADD COLUMN ts tsvector NOT NULL ) STORED; CREATE INDEX tasks_log_parts_ts_idx ON tasks_log_parts USING GIN (ts); - CREATE INDEX idx_tasks_log_parts_task_id ON tasks_log_parts (task_id); CREATE INDEX idx_tasks_log_parts_created_at ON tasks_log_parts (created_at); `