Skip to content

Commit 04a732b

Browse files
authored
Add Trilogy to the list of supported adapters in README (#37)
1 parent b137313 commit 04a732b

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,15 @@ DB[:posts].update(title: "sequel-activerecord_connection")
8383
#=> 1
8484
```
8585

86-
The database extension supports `postgresql`, `mysql2` and `sqlite3`
86+
The database extension supports `postgresql`, `mysql2`, `trilogy` and `sqlite3`
8787
ActiveRecord adapters, just make sure to initialize the corresponding Sequel
8888
adapter before loading the extension.
8989

9090
```rb
91-
Sequel.postgres(extensions: :activerecord_connection) # for "postgresql" adapter
92-
Sequel.mysql2(extensions: :activerecord_connection) # for "mysql2" adapter
93-
Sequel.sqlite(extensions: :activerecord_connection) # for "sqlite3" adapter
91+
Sequel.postgres(extensions: :activerecord_connection) # for "postgresql" adapter
92+
Sequel.mysql2(extensions: :activerecord_connection) # for "mysql2" adapter
93+
Sequel.trilogy(extensions: :activerecord_connection) # for "trilogy" adapter
94+
Sequel.sqlite(extensions: :activerecord_connection) # for "sqlite3" adapter
9495
```
9596

9697
If you're on JRuby, you should be using the JDBC adapters:

0 commit comments

Comments
 (0)