diff options
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb index 8f71c7e144..31d5266da8 100644 --- a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb @@ -662,7 +662,7 @@ module ActiveRecord # Drops a schema # # Example: - # drop_schema('products', 'postgres') + # drop_schema('products') def drop_schema(schema_name) execute("DROP SCHEMA \"#{schema_name}\"") end |