-
Notifications
You must be signed in to change notification settings - Fork 2
DB Table: posts
Cedric AUDRIT edited this page Dec 9, 2020
·
2 revisions
| COLUMN | TYPE (MYSQL) | CONTENT |
|---|---|---|
| ann_id | int | primary key |
| post_content | text | Post Content (subject in topics table) |
| post_date | datetime | Date Creation of the post |
| post_date_update | datetime | Date last update of the post |
| post_deleted | tinyint(1) | Set as deleted (0=normal, 1=deleted) |
| post_topic | int | ID of the topic |
| post_by | int | ID of User author |
| post_pin | int | Pin to TOP (0=normal, 1=pinned) |
| post_vote | mediumint | ID of vote for vote table |
| post_exclsearch | int | for exclude post form search (0=normal, 1=exclude) |