createTable('messages',
'id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
auth VARCHAR(16),
recip VARCHAR(16),
pm CHAR(1),
time INT UNSIGNED,
message VARCHAR(4096),
INDEX(auth(6)),
INDEX(recip(6))');
This is a mysql command for creating a table. I was just wondering, what are the last 2 lines of the command, "INDEX(auth(6))" and "INDEX(recip(6))"? I am used to using phpMyAdmin and used to more of the graphical interface. How can you relate this command to the graphical interface process?