Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

30 linhas
1.5 KiB

  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="core_config_data" resource="default" engine="innodb" comment="Config Data">
  11. <column xsi:type="int" name="config_id" unsigned="true" nullable="false" identity="true"
  12. comment="Config ID"/>
  13. <column xsi:type="varchar" name="scope" nullable="false" length="8" default="default" comment="Config Scope"/>
  14. <column xsi:type="int" name="scope_id" unsigned="false" nullable="false" identity="false"
  15. default="0" comment="Config Scope ID"/>
  16. <column xsi:type="varchar" name="path" nullable="false" length="255" default="general" comment="Config Path"/>
  17. <column xsi:type="text" name="value" nullable="true" comment="Config Value"/>
  18. <column xsi:type="timestamp" name="updated_at" on_update="true" nullable="false" default="CURRENT_TIMESTAMP"
  19. comment="Updated At"/>
  20. <constraint xsi:type="primary" referenceId="PRIMARY">
  21. <column name="config_id"/>
  22. </constraint>
  23. <constraint xsi:type="unique" referenceId="CORE_CONFIG_DATA_SCOPE_SCOPE_ID_PATH">
  24. <column name="scope"/>
  25. <column name="scope_id"/>
  26. <column name="path"/>
  27. </constraint>
  28. </table>
  29. </schema>