Sha256: 0f256be2a3451c063d021b26f25463840b9cb1eaab83a5aaca571076cf29f246
Contents?: true
Size: 538 Bytes
Versions: 24
Compression:
Stored size: 538 Bytes
Contents
require 'sniff/database' Sniff::Database.define_schema do create_table "purchase_records", :force => true do |t| t.integer 'merchant_id' t.string 'mcc' t.string 'ps_code' t.string 'io_code' t.float 'purchase_amount' t.float 'tax' t.float 'cost' t.string 'line_item' t.string 'customer_code' t.string 'zip_code_name' t.date 'date' t.float 'adjusted_cost' t.string 'adjusted_cost_units' t.float 'emission_factor' t.string 'emission_factor_units' end end
Version data entries
24 entries across 24 versions & 1 rubygems