aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/algebra/attributes/decimal.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/algebra/attributes/decimal.rb')
-rw-r--r--lib/arel/algebra/attributes/decimal.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/arel/algebra/attributes/decimal.rb b/lib/arel/algebra/attributes/decimal.rb
deleted file mode 100644
index bf6587fa34..0000000000
--- a/lib/arel/algebra/attributes/decimal.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-module Arel
- module Attributes
- class Decimal < Attribute
- def type_cast(val)
- type_cast_to_numeric(val, :to_d)
- end
- end
- end
-end