1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

[ci skip] correct example output and filename in pg guide

This commit is contained in:
yuuji.yaginuma 2014-11-22 16:13:33 +09:00
parent 71bb8c34f5
commit 85774cfb1a

View file

@ -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!