DOCUMENTATION/DATABASE/SEQUEL.md in nephos-server-0.6.9 vs DOCUMENTATION/DATABASE/SEQUEL.md in nephos-server-0.7.0
- old
+ new
@@ -6,15 +6,15 @@
It handles connection with DB, sql request creation, caching, etc.
[Sequel documentation](http://sequel.jeremyevans.net/documentation.html)
## Installation
-
```bash
gem install sequel
```
## Usage
+You can add the following code in ``/sequel.rb``:
```ruby
require 'sequel'
DB = Sequel.connect(ENV['DATABASE_URL'])
```