* @property-read integer $dislikes number of dislikes of the liked object
* @property-read integer $cumulativeLikes cumulative result of likes (counting +1) and dislikes (counting -1)
* @property-read string $cachedUsers serialized array with the ids and names of the three users who liked (+1) the object last
+ * @property-read string $cachedReactions serialized array with the reactionTypeIDs and the count of the reactions
*/
class LikeObject extends DatabaseObject {
/**
dislikes MEDIUMINT(7) NOT NULL DEFAULT 0,
cumulativeLikes MEDIUMINT(7) NOT NULL DEFAULT 0,
cachedUsers TEXT,
+ cachedReactions TEXT,
UNIQUE KEY (objectTypeID, objectID)
);