aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/type/decimal.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/type/decimal.rb')
-rw-r--r--activerecord/lib/active_record/connection_adapters/type/decimal.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/type/decimal.rb b/activerecord/lib/active_record/connection_adapters/type/decimal.rb
deleted file mode 100644
index ac5af4b963..0000000000
--- a/activerecord/lib/active_record/connection_adapters/type/decimal.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-module ActiveRecord
- module ConnectionAdapters
- module Type
- class Decimal < Value # :nodoc:
- include Numeric
-
- def type
- :decimal
- end
-
- def klass
- ::BigDecimal
- end
-
- private
-
- def cast_value(value)
- if value.respond_to?(:to_d)
- value.to_d
- else
- value.to_s.to_d
- end
- end
- end
- end
- end
-end