aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/attributes/attribute.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/attributes/attribute.rb')
-rw-r--r--lib/arel/attributes/attribute.rb9
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/arel/attributes/attribute.rb b/lib/arel/attributes/attribute.rb
index bd3f4b58f1..5aea87ac43 100644
--- a/lib/arel/attributes/attribute.rb
+++ b/lib/arel/attributes/attribute.rb
@@ -3,18 +3,15 @@ module Arel
class Attribute < Struct.new :relation, :name
include Arel::Expressions
include Arel::Predications
- end
-
- class NumericAttribute < Attribute
include Arel::Math
end
class String < Attribute; end
class Time < Attribute; end
class Boolean < Attribute; end
- class Decimal < NumericAttribute; end
- class Float < NumericAttribute; end
- class Integer < NumericAttribute; end
+ class Decimal < Attribute; end
+ class Float < Attribute; end
+ class Integer < Attribute; end
class Undefined < Attribute; end
end