Sha256: d979b7b23b97f3e3ac9b47ffbedd9ac59d5b4201baf006f0a3d76670b0814889
Contents?: true
Size: 563 Bytes
Versions: 177
Compression:
Stored size: 563 Bytes
Contents
class AddColumnsToHDPatientStatistics < ActiveRecord::Migration[4.2] def change add_column :hd_patient_statistics, :number_of_missed_sessions, :integer add_column :hd_patient_statistics, :dialysis_minutes_shortfall, :integer add_column :hd_patient_statistics, :dialysis_minutes_shortfall_percentage, :decimal, precision: 10, scale: 2 add_column :hd_patient_statistics, :mean_ufr, :decimal, precision: 10, scale: 2 add_column :hd_patient_statistics, :mean_weight_loss_as_percentage_of_body_weight, :decimal, precision: 10, scale: 2 end end
Version data entries
177 entries across 177 versions & 1 rubygems