aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorRizwan Reza <rizwanreza@gmail.com>2010-03-28 11:10:35 +0430
committerRizwan Reza <rizwanreza@gmail.com>2010-03-28 11:10:35 +0430
commit66d57d7ba83df52ff1e0485c89f6192c2f84c6b8 (patch)
treef78e469af32df0860fb53fdce6c094af34a2507c /activerecord
parent6c2a0675f11a9b5b8e88ed7dbccd65cb51be8029 (diff)
downloadrails-66d57d7ba83df52ff1e0485c89f6192c2f84c6b8.tar.gz
rails-66d57d7ba83df52ff1e0485c89f6192c2f84c6b8.tar.bz2
rails-66d57d7ba83df52ff1e0485c89f6192c2f84c6b8.zip
Oops, a docfix.
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb2
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