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

docs: bitstring attributes are strings [ci-skip]

This commit is contained in:
Max Notarangelo 2021-12-02 13:46:11 -08:00
parent 2b6182cbd6
commit 4b7596ba8e

View file

@ -399,7 +399,7 @@ irb> user.settings
=> "01010011"
irb> user.settings = "0xAF"
irb> user.settings
=> 10101111
=> "10101111"
irb> user.save!
```