aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_postgresql.md
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2014-11-22 16:13:33 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2014-11-22 16:13:33 +0900
commit85774cfb1ab424a58c1af6759ad8a42df85089bc (patch)
tree50158d6d1303d28b2be6995699702dbdfc733734 /guides/source/active_record_postgresql.md
parent71bb8c34f539f8ffbb7e7968f50f797e08812133 (diff)
downloadrails-85774cfb1ab424a58c1af6759ad8a42df85089bc.tar.gz
rails-85774cfb1ab424a58c1af6759ad8a42df85089bc.tar.bz2
rails-85774cfb1ab424a58c1af6759ad8a42df85089bc.zip
[ci skip] correct example output and filename in pg guide
Diffstat (limited to 'guides/source/active_record_postgresql.md')
-rw-r--r--guides/source/active_record_postgresql.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/active_record_postgresql.md b/guides/source/active_record_postgresql.md
index 36345e3137..a2681a80e9 100644
--- a/guides/source/active_record_postgresql.md
+++ b/guides/source/active_record_postgresql.md
@@ -214,7 +214,7 @@ Currently there is no special support for enumerated types. They are mapped as
normal text columns:
```ruby
-# db/migrate/20131220144913_create_events.rb
+# db/migrate/20131220144913_create_articles.rb
execute <<-SQL
CREATE TYPE article_status AS ENUM ('draft', 'published');
SQL
@@ -276,7 +276,7 @@ end
# Usage
User.create settings: "01010011"
user = User.first
-user.settings # => "(Paris,Champs-Élysées)"
+user.settings # => "01010011"
user.settings = "0xAF"
user.settings # => 10101111
user.save!