CREATE TABLE IF NOT EXISTS `messages`( `id` BIGINT UNSIGNED NOT NULL, `content` VARCHAR(2048), `author_id` BIGINT UNSIGNED NOT NULL, `channel_id` BIGINT UNSIGNED NOT NULL, PRIMARY KEY (`id`), FOREIGN KEY (`author_id`) REFERENCES members(`id`), FOREIGN KEY (`channel_id`) REFERENCES channels(`id`) );