Skip to content

Commit

Permalink
Make this docs more consistent with the rest of the docs present
Browse files Browse the repository at this point in the history
  • Loading branch information
smartinez87 committed Apr 22, 2011
1 parent 0ce94f4 commit 868fb38
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -208,13 +208,13 @@ def supports_bulk_alter? #:nodoc:
true true
end end


# Returns +true+, since this connection adapter supports prepared statement # Returns true, since this connection adapter supports prepared statement
# caching. # caching.
def supports_statement_cache? def supports_statement_cache?
true true
end end


# Returns true. # Returns true, since this connection adapter supports migrations.
def supports_migrations? #:nodoc: def supports_migrations? #:nodoc:
true true
end end
Expand All @@ -224,6 +224,7 @@ def supports_primary_key? #:nodoc:
true true
end end


# Returns true, since this connection adapter supports savepoints.
def supports_savepoints? #:nodoc: def supports_savepoints? #:nodoc:
true true
end end
Expand Down
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def native_database_types #:nodoc:
NATIVE_DATABASE_TYPES NATIVE_DATABASE_TYPES
end end


# Does PostgreSQL support migrations? # Returns true, since this connection adapter supports migrations.
def supports_migrations? def supports_migrations?
true true
end end
Expand All @@ -316,6 +316,7 @@ def supports_ddl_transactions?
true true
end end


# Returns true, since this connection adapter supports savepoints.
def supports_savepoints? def supports_savepoints?
true true
end end
Expand Down
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def supports_statement_cache?
true true
end end


# Returns true. # Returns true, since this connection adapter supports migrations.
def supports_migrations? #:nodoc: def supports_migrations? #:nodoc:
true true
end end
Expand Down

0 comments on commit 868fb38

Please sign in to comment.