Respect type method. #5337

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4593 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper
2006-07-08 17:10:29 +00:00
parent f801cd7959
commit 338defb48c

View File

@@ -21,16 +21,14 @@ module ActiveRecord
@default = type_cast(default)
@primary = nil
@text = [:string, :text].include? @type
@number = [:float, :integer].include? @type
end
def text?
@text
[:string, :text].include? type
end
def number?
@number
[:float, :integer].include? type
end
# Returns the Ruby class that corresponds to the abstract data type.