Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
trancethehuman committed Nov 19, 2023
1 parent 866ce8b commit 9f498e1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/concepts_collections.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ Record (
```

For example:

```python
("vec1", [0.1, 0.2, 0.3], {"year": 1990})
```

Underneath every `vecs` a collection is Postgres table
Underneath every `vecs` collection is a Postgres table

```sql
create table <collection_name> (
Expand All @@ -28,6 +29,7 @@ create table <collection_name> (
metadata jsonb
)
```

where rows in the table map 1:1 with vecs vector records.

It is safe to select collection tables from outside the vecs client but issuing DDL is not recommended.

0 comments on commit 9f498e1

Please sign in to comment.