add bot identifier to posts

This commit is contained in:
Mystikfluu
2022-06-16 13:51:03 +02:00
parent ae538b33af
commit 824eb99851
9 changed files with 48 additions and 12 deletions
+2 -1
View File
@@ -24,6 +24,7 @@ CREATE TABLE `posts` (
`post_text` varchar(4000) NOT NULL,
`post_time` bigint NOT NULL,
`post_special_text` varchar(100) DEFAULT NULL,
`post_ip` varchar(12) DEFAULT NULL,
`post_receiver_name` varchar(100) DEFAULT NULL,
`post_from_bot` tinyint DEFAULT '0',
PRIMARY KEY (`post_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;