Skip to content

Commit 4baa730

Browse files
authored
Update createDB.php
1 parent 5fb2757 commit 4baa730

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

createDB.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,18 @@
280280
PRIMARY KEY (`id`)
281281
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_persian_ci");
282282

283+
$connection->query("CREATE TABLE `send_list` (
284+
`id` int(255) NOT NULL AUTO_INCREMENT,
285+
`offset` int(255) NOT NULL DEFAULT 0,
286+
`type` varchar(20) NOT NULL,
287+
`text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin,
288+
`chat_id` bigint(10),
289+
`message_id` int(255),
290+
`file_id` varchar(500),
291+
`state` int(1) NOT NULL DEFAULT 0,
292+
PRIMARY KEY (`id`)
293+
)");
294+
283295

284296

285297
?>

0 commit comments

Comments
 (0)