aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/schema
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2015-02-18 20:47:01 +0900
committerRyuta Kamizono <kamipo@gmail.com>2015-02-18 20:58:45 +0900
commitaf64c82411067776d6e649462d9b74b14f1083f3 (patch)
tree088c2aa4fac0979343886ad08c9bee278a6933fd /activerecord/test/schema
parent9814eb64275973abc66b1481b522c39b7083fff5 (diff)
downloadrails-af64c82411067776d6e649462d9b74b14f1083f3.tar.gz
rails-af64c82411067776d6e649462d9b74b14f1083f3.tar.bz2
rails-af64c82411067776d6e649462d9b74b14f1083f3.zip
Prefer `drop_table if_exists: true` over raw SQL
Lowercase raw SQL has been replaced by 07b659c already. This commit replaces everything else of raw SQL.
Diffstat (limited to 'activerecord/test/schema')
-rw-r--r--activerecord/test/schema/postgresql_specific_schema.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/schema/postgresql_specific_schema.rb b/activerecord/test/schema/postgresql_specific_schema.rb
index 55360b9aa2..77d2f7fda2 100644
--- a/activerecord/test/schema/postgresql_specific_schema.rb
+++ b/activerecord/test/schema/postgresql_specific_schema.rb
@@ -2,7 +2,7 @@ ActiveRecord::Schema.define do
%w(postgresql_times postgresql_oids defaults postgresql_timestamp_with_zones
postgresql_partitioned_table postgresql_partitioned_table_parent).each do |table_name|
- execute "DROP TABLE IF EXISTS #{quote_table_name table_name}"
+ drop_table table_name, if_exists: true
end
execute 'DROP SEQUENCE IF EXISTS companies_nonstd_seq CASCADE'