Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

21 строка
991 B

  1. <?xml version="1.0"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:noNamespaceSchemaLocation="urn:magento:framework:Setup/Declaration/Schema/etc/schema.xsd">
  10. <table name="jwt_auth_revoked" resource="default" engine="innodb" comment="Holds revoked JWT authentication data">
  11. <column xsi:type="int" name="user_type_id" unsigned="true" nullable="false" comment="User Type ID"/>
  12. <column xsi:type="int" name="user_id" unsigned="true" nullable="false" comment="User ID"/>
  13. <column xsi:type="bigint" name="revoke_before" nullable="false" unsigned="true"
  14. comment="Not accepting tokens issued before this timestamp" />
  15. <constraint xsi:type="primary" referenceId="JWT_AUTH_REVOKED_USER">
  16. <column name="user_type_id" />
  17. <column name="user_id" />
  18. </constraint>
  19. </table>
  20. </schema>