Sha256: 30b2ea343df68cdb43c5b7058aa016545805c1d225a1e388786f5b5d5698c675
Contents?: true
Size: 529 Bytes
Versions: 177
Compression:
Stored size: 529 Bytes
Contents
class CreateClinicVisits < ActiveRecord::Migration[4.2] def change create_table :clinic_visits do |t| t.belongs_to :patient, index: true t.datetime :date, null: false t.float :height t.float :weight t.integer :systolic_bp t.integer :diastolic_bp t.string :urine_blood t.string :urine_protein t.text :notes t.belongs_to :created_by, index: true, null: false t.belongs_to :updated_by, index: true, null: false t.timestamps null: false end end end
Version data entries
177 entries across 177 versions & 1 rubygems