class CreateLaboratoryShixuns < ActiveRecord::Migration[5.2]
  def change
    create_table :laboratory_shixuns do |t|
      t.references :laboratory
      t.references :shixun

      t.boolean :ownership, default: false
      t.boolean :homepage, default: false

      t.timestamps
    end
  end
end