Sha256: d6d6612ca18d74e3216cbcecf8c90537036800a037327cf128eba97d1f7c05f3
Contents?: true
Size: 654 Bytes
Versions: 4
Compression:
Stored size: 654 Bytes
Contents
require 'earth/locality' class ResidenceFuelPrice < ActiveRecord::Base self.primary_key = "row_hash" belongs_to :fuel, :class_name => 'ResidenceFuelType', :foreign_key => 'residence_fuel_type_name' belongs_to :locatable, :polymorphic => true col :row_hash col :residence_fuel_type_name col :year, :type => :integer col :month, :type => :integer col :price, :type => :float col :price_units col :price_description col :locatable_id col :locatable_type add_index [:price, :residence_fuel_type_name, :month, :year, :locatable_type, :locatable_id] add_index [:price, :residence_fuel_type_name] warn_unless_size 13005 end
Version data entries
4 entries across 4 versions & 1 rubygems