This table holds the attribute name and value pairs for marketplace sellers.
Column Descriptions:
Name
|
Type
|
Description
|
ORGENTITY_ID |
BIGINT NOT NULL |
Marketplace seller organization id |
STOREENT_ID |
INTEGER NOT NULL |
Identifier of the store where the attribute is associated
|
NAME |
VARCHAR(254) NOT NULL |
The name of the attribute |
VALUE |
VARCHAR(2048) NOT NULL |
The value of the attribute |
OPTCOUNTER |
SMALLINT NOT NULL |
The optimistic concurrency control counter for the table. Every
time there is an update to the table, the counter is incremented.
|
Indexes:
Name
|
Column Names
|
Type
|
P_MPSELLERATTR |
ORGENTITY_ID + STOREENT_ID + NAME |
Primary Key |
I_MPSELLERATTR_1 |
ORGENTITY_ID |
Non-Unique Index |
Constrained By Parent Tables:
Constraint
|
Columns
|
Parent Table
|
Parent Columns
|
Type
|
F_MPSELLERATTR_ORGENTITY_ID |
ORGENTITY_ID |
ORGENTITY
|
ORGENTITY_ID |
Cascade |
F_MPSELLERATTR_STOREENT_ID |
STOREENT_ID |
STOREENT
|
STOREENT_ID |
Cascade |