README.md in tobox-0.4.3 vs README.md in tobox-0.4.4
- old
+ new
@@ -180,9 +180,18 @@
```ruby
database_uri `"postgres://user:password@localhost/blog"`.
```
+### `database_options`
+
+Accepts an hash of options, [which are directly passed to Sequel.connect](https://sequel.jeremyevans.net/rdoc/files/doc/opening_databases_rdoc.html):
+
+```ruby
+database_options after_connect: -> (conn) { puts conn }
+```
+
+
### `table`
the name of the database table where outbox events are stored (`:outbox` by default).
```ruby