I’m not 100%, but I think you need to have your columns in the ticks ”.
And also you must put your .$jqmi_image_paths. in ‘.$jqmi_image_paths.’ not the double ones. So your table would then be:
$jqmi_sql_one = "CREATE TABLE '.$jqmi_image_paths.' (
'id' int(11) NULL AUTO_INCREMENT,
'path' text NOT NULL,
UNIQUE KEY id (id)
) $charset_collate;";
But the ‘ are more like the ones here used for the code.