⚙️ Magento_AsynchronousOperations · engine innodb
magento_bulk
Bulk entity that represents set of related asynchronous operations
Neighbourhood (1-hop foreign-key graph — showing 2 of 2)
flowchart LR c["magento_bulk"]:::center n0["magento_acknowledged_bulk"] click n0 "/schema/table/magento_acknowledged_bulk" c -- bulk_uuid --> n0 n1["magento_operation"] click n1 "/schema/table/magento_operation" c -- bulk_uuid --> n1 click c "/schema/table/magento_bulk" classDef center fill:#eef2ff,stroke:#6366f1,color:#3730a3,stroke-width:1.5px
Click a node to jump to that table.
Related tables (2)
Columns (7)
| Name | Type | Null | Default | Comment |
|---|---|---|---|---|
| id PK | int unsigned | no | Bulk Internal ID (must not be exposed) | |
| uuid | varbinary(39) | yes | Bulk UUID (can be exposed to reference bulk entity) | |
| user_id | int unsigned | yes | ID of the WebAPI user that performed an action | |
| user_type | int | yes | Which type of user | |
| description | varchar(255) | yes | Bulk Description | |
| operation_count | int unsigned | no | Total number of operations scheduled within this bulk | |
| start_time | timestamp | no | CURRENT_TIMESTAMP | Bulk start time |
Keys & indexes
Primary key: id
Unique
- MAGENTO_BULK_UUID (uuid)
Indexes
- MAGENTO_BULK_USER_ID_ADMIN_USER_USER_ID (user_id) btree
- MAGENTO_BULK_START_TIME (start_time) btree
Referenced by (2)
- magento_acknowledged_bulk .bulk_uuid → .uuid (on delete CASCADE)
- magento_operation .bulk_uuid → .uuid (on delete CASCADE)