Sha256: 7f8a2260f87d3796d9a60ed72069d936f4fd540fab87eb1b7a23c4dd1727e351
Contents?: true
Size: 728 Bytes
Versions: 177
Compression:
Stored size: 728 Bytes
Contents
class CreateBagTypes < ActiveRecord::Migration[4.2] def change create_table :pd_bag_types do |t| t.string :manufacturer, null: false t.string :description, null: false t.decimal :glucose_grams_per_litre, precision: 4, scale: 1, null: false t.boolean :amino_acid t.boolean :icodextrin t.boolean :low_glucose_degradation t.boolean :low_sodium t.integer :sodium_mmole_l t.integer :lactate_mmole_l t.integer :bicarbonate_mmole_l t.decimal :calcium_mmole_l, precision: 3, scale: 2 t.decimal :magnesium_mmole_l, precision: 3, scale: 2 t.datetime :deleted_at t.timestamps null: false end add_index :pd_bag_types, :deleted_at end end
Version data entries
177 entries across 177 versions & 1 rubygems