<?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="IMAuthLib\Account\UsernamePassword\UsernamePasswordAccount" table="accounts">
        <id name="id" type="integer" column="id">
            <generator strategy="IDENTITY"/>
        </id>

        <field name="username" column="username" type="string" nullable="false" />
        <field name="password" column="password" type="string" nullable="false" />
        <field name="loginAttempts" column="login_attempts" type="integer" nullable="false" />
        <field name="type" column="type" type="string" nullable="false" />
        <field name="createdAt" column="created_at" type="datetime" nullable="false" />
    </entity>

</doctrine-mapping>