Skip to content

Commit

Permalink
doc: добавлен пример создания таблициы
Browse files Browse the repository at this point in the history
  • Loading branch information
kuznetsovin committed Jul 23, 2021
1 parent 9761bad commit 0a8f9f3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions libs/store/postgresql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,11 @@ Parameters description:
- *database* - db name
- *table* - table in db where will be insert data. Table must have *point* field (jsonb type)
- *sslmode* - postgres ssl mode

Simple db table for inserting data example:

```sql
create table points (
point jsonb
);
```

0 comments on commit 0a8f9f3

Please sign in to comment.