<?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
                  https://www.doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
    <entity name="App\Models\Usuario" table="usuarios">
        <id name="id" type="integer">
            <generator strategy="IDENTITY"/>
        </id>
        <field name="usuario" type="string" length="64" unique="true"/>
        <field name="password" type="string" length="255"/>
        <field name="nombre" type="string" length="128" nullable="true"/>
    </entity>
</doctrine-mapping>
