diff --git a/core/src/stores/postgres.rs b/core/src/stores/postgres.rs index 0a9d7da546bf..045a32f923bf 100644 --- a/core/src/stores/postgres.rs +++ b/core/src/stores/postgres.rs @@ -1867,7 +1867,7 @@ impl Store for PostgresStore { .prepare( "INSERT INTO data_sources_documents \ (id, data_source, created, document_id, timestamp, tags_array, \ - source_url, hash, text_size, chunk_count, status) \ + hash, text_size, chunk_count, status) \ VALUES (DEFAULT, $1, $2, $3, $4, $5, $6, $7, $8, $9, $10) \ RETURNING id, created", ) @@ -1882,7 +1882,6 @@ impl Store for PostgresStore { &create_params.document_id, &(create_params.timestamp as i64), &create_params.tags, - &create_params.source_url, &create_params.hash, &(create_params.text_size as i64), &(create_params.chunk_count as i64),