class CreateUnities < ActiveRecord::Migration[6.0]
  def change
    create_table :unities do |t|
      t.integer :role_id
      t.integer :user_id
      t.integer :location_network_id
      t.string  :current_network
      t.timestamps
    end
  end
end
