From a5bdbc16cd3aafc0d82548d0cdb48edc5d1dbc67 Mon Sep 17 00:00:00 2001 From: Sylvain Date: Wed, 14 Sep 2016 18:13:18 +0200 Subject: [PATCH] updated README about PGSQL jsonb limitation --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 465097cb3..522d4339e 100644 --- a/README.md +++ b/README.md @@ -360,6 +360,7 @@ To create it, please follow these instructions: - `app/controllers/api/invoices_controllers.rb@list` is using `ILIKE` and `date_trunc()` - `db/migrate/20160613093842_create_unaccent_function.rb` is using [unaccent](https://www.postgresql.org/docs/current/static/unaccent.html) and [trigram](https://www.postgresql.org/docs/current/static/pgtrgm.html) modules and defines a PL/pgSQL function (`f_unaccent()`) - `app/controllers/api/members_controllers.rb@search` is using `f_unaccent()` (see above) and `regexp_replace()` + - `db/migrate/20150604131525_add_meta_data_to_notifications.rb` is using [jsonb](https://www.postgresql.org/docs/9.4/static/datatype-json.html), a PostgreSQL 9.4+ datatype. - If you intend to contribute to the project code, you will need to run the test suite with `rake test`. This also requires your user to have the _SUPERUSER_ role. Please see the [known issues](#known-issues) section for more informations about this.