whitespace

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4789 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper 2006-08-19 05:55:15 +00:00
parent b0a86f8c0e
commit a752fdb321

@ -1,4 +1,3 @@
require 'active_record/connection_adapters/abstract_adapter'
module ActiveRecord
@ -232,7 +231,7 @@ def indexes(table_name, name = nil) #:nodoc:
def columns(table_name, name = nil) #:nodoc:
column_definitions(table_name).collect do |name, type, default, notnull, typmod|
# 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