diff options
author | Sagar Kamble <sagar@treeni.com> | 2018-05-06 13:13:05 +0530 |
---|---|---|
committer | Sagar Kamble <sagar@treeni.com> | 2018-05-06 13:13:05 +0530 |
commit | 378daaa6afcdd872bab855404658e27163b0926c (patch) | |
tree | cae92f69becabb535cb499bd1b7fa01a37f07236 /guides/source | |
parent | 61f3ae7cc3e6551553f07be04bb9aad1a27440e7 (diff) | |
download | rails-378daaa6afcdd872bab855404658e27163b0926c.tar.gz rails-378daaa6afcdd872bab855404658e27163b0926c.tar.bz2 rails-378daaa6afcdd872bab855404658e27163b0926c.zip |
Active Record postgresql documentation for bit string types corrected
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_record_postgresql.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_postgresql.md b/guides/source/active_record_postgresql.md index 6c6c6a1ded..796b65d6d4 100644 --- a/guides/source/active_record_postgresql.md +++ b/guides/source/active_record_postgresql.md @@ -349,7 +349,7 @@ create_table :users, force: true do |t| t.column :settings, "bit(8)" end -# app/models/device.rb +# app/models/user.rb class User < ApplicationRecord end |