aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activerecord/test/schema/postgresql_specific_schema.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/test/schema/postgresql_specific_schema.rb b/activerecord/test/schema/postgresql_specific_schema.rb
index d6cc4e2d6e..860c63b27c 100644
--- a/activerecord/test/schema/postgresql_specific_schema.rb
+++ b/activerecord/test/schema/postgresql_specific_schema.rb
@@ -37,9 +37,9 @@ ActiveRecord::Schema.define do
t.oid :obj_id
end
- drop_table 'postgresql_timestamp_with_zones', if_exists: true
- drop_table 'postgresql_partitioned_table', if_exists: true
- drop_table 'postgresql_partitioned_table_parent', if_exists: true
+ drop_table "postgresql_timestamp_with_zones", if_exists: true
+ drop_table "postgresql_partitioned_table", if_exists: true
+ drop_table "postgresql_partitioned_table_parent", if_exists: true
execute "DROP SEQUENCE IF EXISTS companies_nonstd_seq CASCADE"
execute "CREATE SEQUENCE companies_nonstd_seq START 101 OWNED BY companies.id"