Skip to content

Commit

Permalink
Remove PostgreSQL references from documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricardo Nogueira committed Jun 6, 2016
1 parent 82ce4ed commit 6d8fc1a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# bookshelf-json-columns

This [Bookshelf.js](https://github.com/tgriesser/bookshelf) plugin enables you to define which model columns have JSON format, stringifying its values before saving and parsing afterwards. It's recommended to use it with the `postgres` client, since bookshelf does not have schema information and doesn't know when to use `::json` building the knex queries. Through a simple configuration, there's no need to manually define hooks for each model with JSON columns.
This [Bookshelf.js](https://github.com/tgriesser/bookshelf) plugin enables you to define which model columns have JSON format, erasing the need to manually define hooks for each model with JSON columns.

## Status

Expand All @@ -16,7 +16,7 @@ $ npm install --save bookshelf-json-columns

## Usage

Require and register the `bookshelf-json-columns` plugin:
Require and register the **bookshelf-json-columns** plugin:

```js
var bookshelf = require('bookshelf')(knex);
Expand Down Expand Up @@ -52,7 +52,7 @@ bookshelf.Model.extend({

## Contributing

Feel free to fork this repository and submit pull requests. To run the tests, duplicate the `test/knexfile.js.dist` file, update it to your needs and run:
Feel free to fork this repository and submit pull requests. To run the tests, duplicate the *test/knexfile.js.dist* file, update it to your needs and run:

```sh
$ npm test
Expand Down

0 comments on commit 6d8fc1a

Please sign in to comment.