Sha256: fb5200d85bdc4571ff2be8f10ede4580d45b4913adc325270e9aaff3a14893c1
Contents?: true
Size: 421 Bytes
Versions: 5
Compression:
Stored size: 421 Bytes
Contents
# This migration comes from adherent (originally 20130809052125) class CreateAdherentReglements < ActiveRecord::Migration def change create_table :adherent_reglements do |t| t.decimal :amount, precision: 10, scale: 2 t.references :adhesion t.references :payment t.timestamps end add_index :adherent_reglements, :adhesion_id add_index :adherent_reglements, :payment_id end end
Version data entries
5 entries across 5 versions & 1 rubygems