CREATE TABLE my_feature (
pk_id INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
member_id INT(8) UNSIGNED NOT NULL,
time_added DATETIME NOT NULL,
personal_questions BOOL NULL,
hits INTEGER UNSIGNED NULL,
PRIMARY KEY (pk_id));
When I put this into the MySQL Query Browser I get this error:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 7
This is kind of a pain in the ass and I cannot find anything that helps me.