Basically the title states what I am trying to do. The mysql manual outlines how it should work here: http://dev.mysql.com/doc/refman/5.1/en/example-auto-increment.html
I think, however, I must be missing something obvious as it is not working for me. Here is my code:
$sql = "CREATE TABLE $table_name (
id MEDIUMINT(9) NOT NULL AUTO_INCREMENT,
block VARCHAR(30) NOT NULL,
issue_number MEDIUMINT(9) NOT NULL AUTO_INCREMENT,
date BIGINT(30),
UNIQUE (id),
PRIMARY KEY (block, issue_number)
);";