aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2018-01-19 17:49:21 +1030
committerGitHub <noreply@github.com>2018-01-19 17:49:21 +1030
commitacbcef6094d61eb8c4820295620d170743a4bd71 (patch)
treef0a6d4d0d145464307c2578a7fb43d799bb8d337 /activerecord/lib
parent6559577d1d3fdb16187eda124bb71dd48d217c9d (diff)
parent5ac6ec54a673e493cddf6bf2eff5b98e52b3c268 (diff)
downloadrails-acbcef6094d61eb8c4820295620d170743a4bd71.tar.gz
rails-acbcef6094d61eb8c4820295620d170743a4bd71.tar.bz2
rails-acbcef6094d61eb8c4820295620d170743a4bd71.zip
Merge pull request #31732 from koic/enable_autocorrect_for_lint_end_alignment_cop
Enable autocorrect for `Lint/EndAlignment` cop
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb b/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb
index a8895f8606..c6e5122daf 100644
--- a/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb
+++ b/activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb
@@ -38,7 +38,7 @@ module ActiveRecord
" TABLESPACE = \"#{value}\""
when :connection_limit
" CONNECTION LIMIT = #{value}"
- else
+ else
""
end
end