Sha256: de11df98a11183fda0b71834ae88e32400788be414150b5463a41e3010d575a4
Contents?: true
Size: 324 Bytes
Versions: 41
Compression:
Stored size: 324 Bytes
Contents
class CreateAdherentAdhesions < ActiveRecord::Migration def change create_table :adherent_adhesions do |t| t.date :from_date t.date :to_date t.decimal :amount, precision: 10, scale: 2 t.references :member t.timestamps end add_index :adherent_adhesions, :member_id end end
Version data entries
41 entries across 41 versions & 1 rubygems