SQL entry not working, can you tell me wut is wrong with it
i get this error
#1060 - Duplicate column name 'id'
#
# Table structure for table `news`
#
CREATE TABLE news (
id smallint(7) NOT NULL auto_increment,
author varchar(40) default '0',
email varchar(60) NOT NULL default '0',
title varchar(70) default '0',
news blob NOT NULL,
date text NOT NULL,
internal tinyint(1) NOT NULL default '0',
rank tinyint(1) default NULL,
ip varchar(15) NOT NULL default '',
PRIMARY KEY (id,id),
FULLTEXT KEY date (date)
) TYPE=MyISAM;
#
# Dumping data for table `news`