# File lib/dm-types/epoch_time.rb, line 7
      def load(value)
        if value.kind_of?(::Numeric)
          ::Time.at(value.to_i)
        else
          value
        end
      end