Skip to content

Commit c8e347f

Browse files
committed
Merge remote-tracking branch 'mainline/2.4-develop' into 2.4.1-develop
2 parents dbd3a0b + fa13451 commit c8e347f

File tree

152 files changed

+2483
-1684
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+2483
-1684
lines changed

app/code/Magento/AdminAnalytics/etc/db_schema.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
xsi:noNamespaceSchemaLocation="urn:magento:framework:Setup/Declaration/Schema/etc/schema.xsd">
1010
<table name="admin_analytics_usage_version_log" resource="default" engine="innodb"
1111
comment="Admin Notification Viewer Log Table">
12-
<column xsi:type="int" name="id" padding="10" unsigned="true" nullable="false" identity="true"
12+
<column xsi:type="int" name="id" unsigned="true" nullable="false" identity="true"
1313
comment="Log ID"/>
1414
<column xsi:type="varchar" name="last_viewed_in_version" nullable="false" length="50"
1515
comment="Viewer last viewed on product version"/>

app/code/Magento/AdminNotification/etc/db_schema.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@
88
<schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
99
xsi:noNamespaceSchemaLocation="urn:magento:framework:Setup/Declaration/Schema/etc/schema.xsd">
1010
<table name="adminnotification_inbox" resource="default" engine="innodb" comment="Adminnotification Inbox">
11-
<column xsi:type="int" name="notification_id" padding="10" unsigned="true" nullable="false" identity="true"
11+
<column xsi:type="int" name="notification_id" unsigned="true" nullable="false" identity="true"
1212
comment="Notification ID"/>
13-
<column xsi:type="smallint" name="severity" padding="5" unsigned="true" nullable="false" identity="false"
13+
<column xsi:type="smallint" name="severity" unsigned="true" nullable="false" identity="false"
1414
default="0" comment="Problem type"/>
1515
<column xsi:type="timestamp" name="date_added" on_update="false" nullable="false" default="CURRENT_TIMESTAMP"
1616
comment="Create date"/>
1717
<column xsi:type="varchar" name="title" nullable="false" length="255" comment="Title"/>
1818
<column xsi:type="text" name="description" nullable="true" comment="Description"/>
1919
<column xsi:type="varchar" name="url" nullable="true" length="255" comment="Url"/>
20-
<column xsi:type="smallint" name="is_read" padding="5" unsigned="true" nullable="false" identity="false"
20+
<column xsi:type="smallint" name="is_read" unsigned="true" nullable="false" identity="false"
2121
default="0" comment="Flag if notification read"/>
22-
<column xsi:type="smallint" name="is_remove" padding="5" unsigned="true" nullable="false" identity="false"
22+
<column xsi:type="smallint" name="is_remove" unsigned="true" nullable="false" identity="false"
2323
default="0" comment="Flag if notification might be removed"/>
2424
<constraint xsi:type="primary" referenceId="PRIMARY">
2525
<column name="notification_id"/>
@@ -36,7 +36,7 @@
3636
</table>
3737
<table name="admin_system_messages" resource="default" engine="innodb" comment="Admin System Messages">
3838
<column xsi:type="varchar" name="identity" nullable="false" length="100" comment="Message ID"/>
39-
<column xsi:type="smallint" name="severity" padding="5" unsigned="true" nullable="false" identity="false"
39+
<column xsi:type="smallint" name="severity" unsigned="true" nullable="false" identity="false"
4040
default="0" comment="Problem type"/>
4141
<column xsi:type="timestamp" name="created_at" on_update="false" nullable="false" default="CURRENT_TIMESTAMP"
4242
comment="Create date"/>

app/code/Magento/AdvancedSearch/etc/db_schema.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
xsi:noNamespaceSchemaLocation="urn:magento:framework:Setup/Declaration/Schema/etc/schema.xsd">
1010
<table name="catalogsearch_recommendations" resource="default" engine="innodb"
1111
comment="Advanced Search Recommendations">
12-
<column xsi:type="int" name="id" padding="10" unsigned="true" nullable="false" identity="true" comment="ID"/>
13-
<column xsi:type="int" name="query_id" padding="10" unsigned="true" nullable="false" identity="false"
12+
<column xsi:type="int" name="id" unsigned="true" nullable="false" identity="true" comment="ID"/>
13+
<column xsi:type="int" name="query_id" unsigned="true" nullable="false" identity="false"
1414
default="0" comment="Query ID"/>
15-
<column xsi:type="int" name="relation_id" padding="10" unsigned="true" nullable="false" identity="false"
15+
<column xsi:type="int" name="relation_id" unsigned="true" nullable="false" identity="false"
1616
default="0" comment="Relation ID"/>
1717
<constraint xsi:type="primary" referenceId="PRIMARY">
1818
<column name="id"/>

app/code/Magento/AsynchronousOperations/etc/db_schema.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
xsi:noNamespaceSchemaLocation="urn:magento:framework:Setup/Declaration/Schema/etc/schema.xsd">
1010
<table name="magento_bulk" resource="default" engine="innodb"
1111
comment="Bulk entity that represents set of related asynchronous operations">
12-
<column xsi:type="int" name="id" padding="10" unsigned="true" nullable="false" identity="true"
12+
<column xsi:type="int" name="id" unsigned="true" nullable="false" identity="true"
1313
comment="Bulk Internal ID (must not be exposed)"/>
1414
<column xsi:type="varbinary" name="uuid" nullable="true" length="39"
1515
comment="Bulk UUID (can be exposed to reference bulk entity)"/>
16-
<column xsi:type="int" name="user_id" padding="10" unsigned="true" nullable="true" identity="false"
16+
<column xsi:type="int" name="user_id" unsigned="true" nullable="true" identity="false"
1717
comment="ID of the WebAPI user that performed an action"/>
1818
<column xsi:type="int" name="user_type" nullable="true" comment="Which type of user"/>
1919
<column xsi:type="varchar" name="description" nullable="true" length="255" comment="Bulk Description"/>
20-
<column xsi:type="int" name="operation_count" padding="10" unsigned="true" nullable="false" identity="false"
20+
<column xsi:type="int" name="operation_count" unsigned="true" nullable="false" identity="false"
2121
comment="Total number of operations scheduled within this bulk"/>
2222
<column xsi:type="timestamp" name="start_time" on_update="false" nullable="false" default="CURRENT_TIMESTAMP"
2323
comment="Bulk start time"/>
@@ -32,7 +32,7 @@
3232
</index>
3333
</table>
3434
<table name="magento_operation" resource="default" engine="innodb" comment="Operation entity">
35-
<column xsi:type="int" name="id" padding="10" unsigned="true" nullable="false" identity="true"
35+
<column xsi:type="int" name="id" unsigned="true" nullable="false" identity="true"
3636
comment="Operation ID"/>
3737
<column xsi:type="varbinary" name="bulk_uuid" nullable="true" length="39" comment="Related Bulk UUID"/>
3838
<column xsi:type="varchar" name="topic_name" nullable="true" length="255"
@@ -41,9 +41,9 @@
4141
comment="Data (serialized) required to perform an operation"/>
4242
<column xsi:type="blob" name="result_serialized_data" nullable="true"
4343
comment="Result data (serialized) after perform an operation"/>
44-
<column xsi:type="smallint" name="status" padding="6" unsigned="false" nullable="true" identity="false"
44+
<column xsi:type="smallint" name="status" unsigned="false" nullable="true" identity="false"
4545
default="0" comment="Operation status (OPEN | COMPLETE | RETRIABLY_FAILED | NOT_RETRIABLY_FAILED)"/>
46-
<column xsi:type="smallint" name="error_code" padding="6" unsigned="false" nullable="true" identity="false"
46+
<column xsi:type="smallint" name="error_code" unsigned="false" nullable="true" identity="false"
4747
comment="Code of the error that appeared during operation execution (used to aggregate related failed operations)"/>
4848
<column xsi:type="varchar" name="result_message" nullable="true" length="255"
4949
comment="Operation result message"/>
@@ -59,7 +59,7 @@
5959
</table>
6060
<table name="magento_acknowledged_bulk" resource="default" engine="innodb"
6161
comment="Bulk that was viewed by user from notification area">
62-
<column xsi:type="int" name="id" padding="10" unsigned="true" nullable="false" identity="true"
62+
<column xsi:type="int" name="id" unsigned="true" nullable="false" identity="true"
6363
comment="Internal ID"/>
6464
<column xsi:type="varbinary" name="bulk_uuid" nullable="true" length="39" comment="Related Bulk UUID"/>
6565
<constraint xsi:type="primary" referenceId="PRIMARY">

app/code/Magento/Authorization/etc/db_schema.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88
<schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
99
xsi:noNamespaceSchemaLocation="urn:magento:framework:Setup/Declaration/Schema/etc/schema.xsd">
1010
<table name="authorization_role" resource="default" engine="innodb" comment="Admin Role Table">
11-
<column xsi:type="int" name="role_id" padding="10" unsigned="true" nullable="false" identity="true"
11+
<column xsi:type="int" name="role_id" unsigned="true" nullable="false" identity="true"
1212
comment="Role ID"/>
13-
<column xsi:type="int" name="parent_id" padding="10" unsigned="true" nullable="false" identity="false"
13+
<column xsi:type="int" name="parent_id" unsigned="true" nullable="false" identity="false"
1414
default="0" comment="Parent Role ID"/>
15-
<column xsi:type="smallint" name="tree_level" padding="5" unsigned="true" nullable="false" identity="false"
15+
<column xsi:type="smallint" name="tree_level" unsigned="true" nullable="false" identity="false"
1616
default="0" comment="Role Tree Level"/>
17-
<column xsi:type="smallint" name="sort_order" padding="5" unsigned="true" nullable="false" identity="false"
17+
<column xsi:type="smallint" name="sort_order" unsigned="true" nullable="false" identity="false"
1818
default="0" comment="Role Sort Order"/>
1919
<column xsi:type="varchar" name="role_type" nullable="false" length="1" default="0" comment="Role Type"/>
20-
<column xsi:type="int" name="user_id" padding="10" unsigned="true" nullable="false" identity="false" default="0"
20+
<column xsi:type="int" name="user_id" unsigned="true" nullable="false" identity="false" default="0"
2121
comment="User ID"/>
2222
<column xsi:type="varchar" name="user_type" nullable="true" length="16" comment="User Type"/>
2323
<column xsi:type="varchar" name="role_name" nullable="true" length="50" comment="Role Name"/>
@@ -33,9 +33,9 @@
3333
</index>
3434
</table>
3535
<table name="authorization_rule" resource="default" engine="innodb" comment="Admin Rule Table">
36-
<column xsi:type="int" name="rule_id" padding="10" unsigned="true" nullable="false" identity="true"
36+
<column xsi:type="int" name="rule_id" unsigned="true" nullable="false" identity="true"
3737
comment="Rule ID"/>
38-
<column xsi:type="int" name="role_id" padding="10" unsigned="true" nullable="false" identity="false" default="0"
38+
<column xsi:type="int" name="role_id" unsigned="true" nullable="false" identity="false" default="0"
3939
comment="Role ID"/>
4040
<column xsi:type="varchar" name="resource_id" nullable="true" length="255" comment="Resource ID"/>
4141
<column xsi:type="varchar" name="privileges" nullable="true" length="20" comment="Privileges"/>

0 commit comments

Comments
 (0)