10 lines
433 B
MySQL
10 lines
433 B
MySQL
|
CREATE TABLE `vn`.`chat` (
|
||
|
`id` int(11) DEFAULT NULL,
|
||
|
`senderFk` int(11) DEFAULT NULL,
|
||
|
`recipient` varchar(50) COLLATE utf8mb3_unicode_ci DEFAULT NULL,
|
||
|
`dated` date DEFAULT NULL,
|
||
|
`checkUserStatus` tinyint(1) DEFAULT NULL,
|
||
|
`message` varchar(200) COLLATE utf8mb3_unicode_ci DEFAULT NULL,
|
||
|
`status` tinyint(1) DEFAULT NULL,
|
||
|
`attempts` int(1) DEFAULT NULL
|
||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci
|