🔍 Magento_Search · engine innodb
search_synonyms
table storing various synonyms groups
Neighbourhood (1-hop foreign-key graph — showing 2 of 2)
flowchart LR c["search_synonyms"]:::center n0["store"] click n0 "/schema/table/store" n0 -- store_id --> c n1["store_website"] click n1 "/schema/table/store_website" n1 -- website_id --> c click c "/schema/table/search_synonyms" classDef center fill:#eef2ff,stroke:#6366f1,color:#3730a3,stroke-width:1.5px
Click a node to jump to that table.
Related tables (2)
Columns (4)
| Name | Type | Null | Default | Comment |
|---|---|---|---|---|
| group_id PK | bigint unsigned | no | Synonyms Group ID | |
| synonyms | text | no | list of synonyms making up this group | |
| store_id | smallint unsigned | no | 0 | Store ID - identifies the store view these synonyms belong to |
| website_id | smallint unsigned | no | 0 | Website ID - identifies the website ID these synonyms belong to |
Keys & indexes
Primary key: group_id
Indexes
- SEARCH_SYNONYMS_SYNONYMS (synonyms) fulltext
- SEARCH_SYNONYMS_STORE_ID (store_id) btree
- SEARCH_SYNONYMS_WEBSITE_ID (website_id) btree
References (2)
- store_id → store .store_id (on delete CASCADE)
- website_id → store_website .website_id (on delete CASCADE)