Sha256: c2071c449ddcedc4264620ba7cc1e1861e9a325ffcfbab8a842cee949e13d9b0
Contents?: true
Size: 601 Bytes
Versions: 176
Compression:
Stored size: 601 Bytes
Contents
class AddUnitsToPathologyObservationDescriptions < ActiveRecord::Migration[5.1] def change create_table :pathology_measurement_units do |t| t.string :name, null: false t.string :description, null: true end add_index :pathology_measurement_units, :name, unique: true add_column :pathology_observation_descriptions, :measurement_unit_id, :integer, null: true add_foreign_key :pathology_observation_descriptions, :pathology_measurement_units, column: :measurement_unit_id end end
Version data entries
176 entries across 176 versions & 1 rubygems