By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
CREATE TABLE IF NOT EXISTS adhere (
adhere_id BIGINT(20) NOT NULL AUTO_INCREMENT,
description VARCHAR(100) NOT NULL,
id_uuid VARCHAR(36) NULL,
PRIMARY KEY (adhere_id),
INDEX `ix_tmp_autoinc` (`adhere_id` ASC)
)