aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-06-14 11:20:58 +0200
committerYves Senn <yves.senn@gmail.com>2014-06-14 11:20:58 +0200
commiteb87074e0b73dcb80e8d47cbcfe355f8bdef8428 (patch)
treef21730563e17be3a84b05a6d620b1410b5b24da8
parent534e1e1f53c77430c7e169661da28d6e9c1927ce (diff)
downloadrails-eb87074e0b73dcb80e8d47cbcfe355f8bdef8428.tar.gz
rails-eb87074e0b73dcb80e8d47cbcfe355f8bdef8428.tar.bz2
rails-eb87074e0b73dcb80e8d47cbcfe355f8bdef8428.zip
pg guide, use the term `database views` to be specific. [ci skip]
-rw-r--r--guides/source/active_record_postgresql.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/active_record_postgresql.md b/guides/source/active_record_postgresql.md
index 248d4769a1..a5649e3903 100644
--- a/guides/source/active_record_postgresql.md
+++ b/guides/source/active_record_postgresql.md
@@ -8,7 +8,7 @@ After reading this guide, you will know:
* How to use PostgreSQL's datatypes.
* How to use UUID primary keys.
* How to implement full text search with PostgreSQL.
-* How to back your Active Record models with views.
+* How to back your Active Record models with database views.
--------------------------------------------------------------------------------
@@ -374,8 +374,8 @@ Document.where("to_tsvector('english', title || ' ' || body) @@ to_tsquery(?)",
"cat & dog")
```
-Views
------
+Database Views
+--------------
* [view creation](http://www.postgresql.org/docs/9.3/static/sql-createview.html)