Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4789 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
jeremy committed Aug 19, 2006
1 parent b0a86f8 commit a752fdb
Showing 1 changed file with 1 addition and 2 deletions.
@@ -1,4 +1,3 @@

require 'active_record/connection_adapters/abstract_adapter' require 'active_record/connection_adapters/abstract_adapter'


module ActiveRecord module ActiveRecord
Expand Down Expand Up @@ -232,7 +231,7 @@ def indexes(table_name, name = nil) #:nodoc:
def columns(table_name, name = nil) #:nodoc: def columns(table_name, name = nil) #:nodoc:
column_definitions(table_name).collect do |name, type, default, notnull, typmod| column_definitions(table_name).collect do |name, type, default, notnull, typmod|
# typmod now unused as limit, precision, scale all handled by superclass # typmod now unused as limit, precision, scale all handled by superclass
Column.new(name, default_value(default), translate_field_type(type), notnull == "f") Column.new(name, default_value(default), translate_field_type(type), notnull == "f")
end end
end end


Expand Down

0 comments on commit a752fdb

Please sign in to comment.