A table that stores all recent activity happing in the application
| Column Name | Type | Length | Nullable | Unicode | Description |
|---|---|---|---|---|---|
| activityID | bigint | N/A | false | The primary key of the activity entry. Primary key. | |
| activityType | int | N/A | false | The type of the activity that occurred. | |
| containerID | bigint | N/A | false | The ID of the object that contains the activity object, like a community or blog. | |
| containerType | int | N/A | false | The type of the object that contains the activity object, like a community or blog. | |
| creationDate | bigint | N/A | false | The date of the activity occurred. | |
| objectID | bigint | N/A | false | The ID of the activity object. | |
| objectType | int | N/A | false | The type of the activity object. | |
| userID | bigint | N/A | true | The user ID that caused the activity. |