Skip to content

Commit e0ae50a

Browse files
authored
Merge pull request botpress#75 from kirkwalk/patch-5
Update database.md
2 parents 4516f7a + a99908c commit e0ae50a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/database.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The database is located at `${dataDir}/db.sqlite`.
66

77
### Tables
88

9-
There is a single built-in table called `users`. There's also a method [`db.saveUser`](core-reference.md/#saveuseruserobject---promise) that connectors modules should use to save users to the database.
9+
There is a single built-in table called `users`. There's also a method [`db.saveUser`](core-reference.md/#saveuseruserobject---promise) that connectors' modules should use to save users to the database.
1010

1111
The convention is to prepend the name of your module to your tables, for example `analytics-interactions`, `messenger-config`.
1212

@@ -18,4 +18,4 @@ bp.db.get()
1818
knex('users').where({ first_name: 'Sylvain' })
1919
.then(users => /* ... */)
2020
})
21-
```
21+
```

0 commit comments

Comments
 (0)