Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small docs typo fix #61

Merged
merged 1 commit into from
Nov 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.