Nope, it's just a line of text so I would use the varchar() data type. Something like
create table images (
img_id int not null primary key auto_increment,
img_path varchar(50) not null
);
You'd use a blob data type if you were going to store the actual image file into the database.