aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2018-05-06 13:37:01 +0530
committerGitHub <noreply@github.com>2018-05-06 13:37:01 +0530
commit5edafc21b9e7a0fd84c5664be7c431e05c9b67fb (patch)
treecae92f69becabb535cb499bd1b7fa01a37f07236
parent61f3ae7cc3e6551553f07be04bb9aad1a27440e7 (diff)
parent378daaa6afcdd872bab855404658e27163b0926c (diff)
downloadrails-5edafc21b9e7a0fd84c5664be7c431e05c9b67fb.tar.gz
rails-5edafc21b9e7a0fd84c5664be7c431e05c9b67fb.tar.bz2
rails-5edafc21b9e7a0fd84c5664be7c431e05c9b67fb.zip
Merge pull request #32827 from sagarkt/guides_active_record_postgresql
Active Record postgresql documentation for bit string types corrected [ci skip]
-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