aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/type/decimal_without_scale.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activemodel/lib/active_model/type/decimal_without_scale.rb')
-rw-r--r--activemodel/lib/active_model/type/decimal_without_scale.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/activemodel/lib/active_model/type/decimal_without_scale.rb b/activemodel/lib/active_model/type/decimal_without_scale.rb
deleted file mode 100644
index 985e1038ed..0000000000
--- a/activemodel/lib/active_model/type/decimal_without_scale.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-require "active_model/type/big_integer"
-
-module ActiveModel
- module Type
- class DecimalWithoutScale < BigInteger # :nodoc:
- def type
- :decimal
- end
- end
- end
-end