diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2017-02-13 14:00:05 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2017-02-13 14:00:05 -0300 |
commit | b9bee5e895e218b17a5f4ad72c3cbf6204fa4145 (patch) | |
tree | ba590743c8e9d2db883935f55375de02bacb3398 /activerecord | |
parent | 1c968b484bffb2a7b206b47434f7cf61d10e85a2 (diff) | |
download | rails-b9bee5e895e218b17a5f4ad72c3cbf6204fa4145.tar.gz rails-b9bee5e895e218b17a5f4ad72c3cbf6204fa4145.tar.bz2 rails-b9bee5e895e218b17a5f4ad72c3cbf6204fa4145.zip |
Fix rubocop violations
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/test/schema/postgresql_specific_schema.rb | 6 |
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" |