class CreateLaboratoryUsers < ActiveRecord::Migration[5.2]
  def change
    create_table :laboratory_users do |t|
      t.references :laboratory
      t.references :user
    end
  end
end