<?xml version="1.0" encoding="utf-8"?>
<doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
  
  
  <entity name="Db\Entity\Country" table="country">
    
    <id name="countryCode" type="string" column="country_code" length="5" nullable="false">
      <generator strategy="IDENTITY"/>
    </id>
   
    <field name="Code" type="string" column="code" length="2" nullable="false"/>
    <field name="Name" type="string" column="name" length="100" nullable="false"/>
    
    </entity>
</doctrine-mapping>
