1132. Reported Posts II
Description
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| user\_id | int |
| post\_id | int |
| action\_date | date |
| action | enum |
| extra | varchar |
+---------------+---------+
There is no primary key for this table, it may have duplicate rows.
The action column is an ENUM type of ('view', 'like', 'reaction', 'comment', 'report', 'share').
The extra column has optional information about the action such as a reason for report or a type of reaction. +---------------+---------+
| Column Name | Type |
+---------------+---------+
| post\_id | int |
| remove\_date | date |
+---------------+---------+
post\_id is the primary key of this table.
Each row in this table indicates that some post was removed as a result of being reported or as a result of an admin review.ac
Last updated