diff options
author | Grey Baker <greysteil@gmail.com> | 2016-07-13 16:44:37 +0100 |
---|---|---|
committer | Grey Baker <greysteil@gmail.com> | 2016-07-14 16:49:03 +0100 |
commit | 60ff98184e86044f9c2afe8b47a26b85cec1a3a2 (patch) | |
tree | d254387e969dc1a4928ee4f65c582f1e8d4699d2 | |
parent | ea31bdd7c8b1221d97de2392ac22d9c5fb8657d5 (diff) | |
download | rails-60ff98184e86044f9c2afe8b47a26b85cec1a3a2.tar.gz rails-60ff98184e86044f9c2afe8b47a26b85cec1a3a2.tar.bz2 rails-60ff98184e86044f9c2afe8b47a26b85cec1a3a2.zip |
Add newline between each migration in `structure.sql`
Keeps schema migration inserts as a single commit, so we still get all of the
benefits of https://github.com/rails/rails/commit/42dd2336b31a8d98776d039a2b9fd7f834156a78,
but allows for easier git diff-ing. Fixes #25504.
-rw-r--r-- | activerecord/CHANGELOG.md | 7 | ||||
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 86d07580e8..5cbfe9aa6f 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,3 +1,10 @@ +* Add newline between each migration in `structure.sql` + + Keeps schema migration inserts as a single commit, but allows for easier + git diff-ing. Fixes #25504. + + *Grey Baker*, *Norberto Lopes* + * The flag `error_on_ignored_order_or_limit` has been deprecated in favor of the current `error_on_ignored_order`. diff --git a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb index 396cb0b07a..9e9ace49db 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb @@ -998,8 +998,8 @@ module ActiveRecord sm_table = ActiveRecord::Migrator.schema_migrations_table_name if supports_multi_insert? - sql = "INSERT INTO #{sm_table} (version) VALUES " - sql << versions.map {|v| "('#{v}')" }.join(', ') + sql = "INSERT INTO #{sm_table} (version) VALUES\n" + sql << versions.map {|v| "('#{v}')" }.join(",\n") sql << ";\n\n" sql else |