rails/activerecord/test/models/numeric_data.rb
2017-07-19 22:27:07 +03:00

11 lines
387 B
Ruby

# frozen_string_literal: true
class NumericData < ActiveRecord::Base
self.table_name = "numeric_data"
# Decimal columns with 0 scale being automatically treated as integers
# is deprecated, and will be removed in a future version of Rails.
attribute :world_population, :big_integer
attribute :my_house_population, :big_integer
attribute :atoms_in_universe, :big_integer
end