send message now build properly w/ no warns

This commit is contained in:
shockrah
2020-07-30 23:31:20 -07:00
parent 40ade4ebcc
commit b8c4cee57f
2 changed files with 43 additions and 73 deletions

View File

@@ -1,6 +1,8 @@
-- Time stamp is _not_ in ms
CREATE TABLE IF NOT EXISTS `messages`(
`id` BIGINT UNSIGNED NOT NULL,
`content` VARCHAR(2048),
`id` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
`time` BIGINT NOT NULL,
`content` VARCHAR(2048) NOT NULL,
`author_id` BIGINT UNSIGNED NOT NULL,
`channel_id` BIGINT UNSIGNED NOT NULL,
PRIMARY KEY (`id`),