<?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">

    <mapped-superclass name="FOS\OAuthServerBundle\Entity\AccessToken">
        <field name="token" column="token" type="string" unique="true" />
        <field name="expiresAt" column="expires_at" type="integer" nullable="true" />
        <field name="scope" column="scope" type="string" nullable="true" />
    </mapped-superclass>
</doctrine-mapping>
