CREATE TABLE news (
id int(11) NOT NULL AUTO_INCREMENT,
title varchar (128) NOT NULL,
slug varchar (128) NOT NULL,
text text NOT NULL,
PRIMARY KEY (id),
KEY slug (slug)
);
What does KEY slug (slug) means in the above code?