Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-captcha/etc/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/magento/module-captcha/etc/db_schema.xml

<?xml version="1.0"?>
<!--
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
-->
<schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:noNamespaceSchemaLocation="urn:magento:framework:Setup/Declaration/Schema/etc/schema.xsd">
    <table name="captcha_log" resource="default" engine="innodb" comment="Count Login Attempts">
        <column xsi:type="varchar" name="type" nullable="false" length="32" comment="Type"/>
        <column xsi:type="varchar" name="value" nullable="false" length="255" comment="Value"/>
        <column xsi:type="int" name="count" unsigned="true" nullable="false" identity="false" default="0"
                comment="Count"/>
        <column xsi:type="timestamp" name="updated_at" on_update="false" nullable="true" comment="Update Time"/>
        <constraint xsi:type="primary" referenceId="PRIMARY">
            <column name="type"/>
            <column name="value"/>
        </constraint>
    </table>
</schema>