aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_postgresql.md
diff options
context:
space:
mode:
authorSagar Kamble <sagar@treeni.com>2018-05-06 13:13:05 +0530
committerSagar Kamble <sagar@treeni.com>2018-05-06 13:13:05 +0530
commit378daaa6afcdd872bab855404658e27163b0926c (patch)
treecae92f69becabb535cb499bd1b7fa01a37f07236 /guides/source/active_record_postgresql.md
parent61f3ae7cc3e6551553f07be04bb9aad1a27440e7 (diff)
downloadrails-378daaa6afcdd872bab855404658e27163b0926c.tar.gz
rails-378daaa6afcdd872bab855404658e27163b0926c.tar.bz2
rails-378daaa6afcdd872bab855404658e27163b0926c.zip
Active Record postgresql documentation for bit string types corrected
Diffstat (limited to 'guides/source/active_record_postgresql.md')
-rw-r--r--guides/source/active_record_postgresql.md2
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