I am trying to make anther forum, from another tutorial for my site. I am trying to do it using MAMP, but when i put in the mysql query:
I comes up with an error saying
does anybody know what is going on?
Code:
CREATE TABLE posts (
ID int(5) DEFAULT '0' NOT NULL auto_increment,
TopicID int(5) DEFAULT '0' NOT NULL,
Name varchar(50) NOT NULL,
Email varchar(50) NOT NULL,
Password varchar(50) NOT NULL,
TimeStamp varchar(10) NOT NULL,
Post text NOT NULL,
PRIMARY KEY (ID)
);
CREATE TABLE topics (
ID int(5) DEFAULT '0' NOT NULL auto_increment,
TopicName varchar(50) NOT NULL,
PRIMARY KEY (ID)
);
The tut is here.#1067 - Invalid default value for 'ID'
does anybody know what is going on?