Sha256: b7888b04831ecf03a15eb636f62b7781018c6f56da9d489e99d19d525e916253
Contents?: true
Size: 558 Bytes
Versions: 36
Compression:
Stored size: 558 Bytes
Contents
class EqalizeSchemasBillingPtFpMapping < ActiveRecord::Migration def change create_table "billing_pt_fp_mappings", force: true do |t| t.integer "payment_type_id" t.integer "extface_driver_id" t.integer "mapping" t.datetime "created_at" t.datetime "updated_at" end add_index "billing_pt_fp_mappings", ["extface_driver_id"], name: "index_billing_pt_fp_mappings_on_extface_driver_id" add_index "billing_pt_fp_mappings", ["payment_type_id"], name: "index_billing_pt_fp_mappings_on_payment_type_id" end end
Version data entries
36 entries across 36 versions & 1 rubygems