ALTER TABLE `queue_message` ADD COLUMN IF NOT EXISTS `priority` TINYINT DEFAULT 0 AFTER `message_id`; ADD COLUMN IF NOT EXISTS does not seem to be a valid ALTER TABLE ...
Sequences in MySQL help ensure that values aren't repeated, and many applications require database tables to have an incrementing "id" column. The MySQL syntax offers several ways to avoid repeating ...