"Failed to Create Table" error
-
Based on your response to the other person with this error, below is the code:
CREATE TABLE
wp_ha65rf_PIN
(
ID
bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT ‘ID’,
DOB
date NOT NULL,
TOB
time NOT NULL,
Planet
enum(”Sun”,”Moon”,”Mars”,”Venus”,”Jupiter”,”Saturn”,”Uranus”,”Neptune”,”Pluto”) NOT NULL,
Sign
enum(”Aries”,”Taurus”,”Gemini”,”Cancer”,”Leo”,”Virgo”,”Libra”,”Scorpio”,”Sagittarius”,”Capricorn”,”Aquarius”,”Pisces”) NOT NULL,
House
enum(”First”,”Second”,”Third”,”Fourth”,”Fifth”,”Sixth”,”Seventh”,”Eighth”,”Ninth”,”Tenth”,”Eleventh”,”Twelfth”) NOT NULL,
Aspect
enum(”Conjunction”,”Opposition”,”Sextile”,”Semi-Sextile”,”Square”,”Semi-Square”,”Trine”,”Quincunx”,”Sesqui-Square”,”Quintile”,”Bi-Quintile”,”Parallel”,”Contra Parallel”) NOT NULL,
NP
enum(”Sun”,”Moon”,”Mars”,”Venus”,”Jupiter”,”Saturn”,”Uranus”,”Neptune”,”Pluto”) NOT NULL,
NS
enum(”Aries”,”Taurus”,”Gemini”,”Cancer”,”Leo”,”Virgo”,”Libra”,”Scorpio”,”Sagittarius”,”Capricorn”,”Aquarius”,”Pisces”) NOT NULL,
NH
enum(”First”,”Second”,”Third”,”Fourth”,”Fifth”,”Sixth”,”Seventh”,”Eighth”,”Ninth”,”Tenth”,”Eleventh”,”Twelfth”) NOT NULL,
OtherAs
enum(‘Yes’,’No’) NOT NULL,
Event
varchar(3000) NOT NULL,
created
datetime NOT NULL DEFAULT ‘0000-00-00 00:00:00’ COMMENT ‘Created Datetime’,
updated
timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ‘Updated Datetime’,
PRIMARY KEY(ID
) )
ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT=’Planets in Transit’ AUTO_INCREMENT=1;Thanks!
- The topic ‘"Failed to Create Table" error’ is closed to new replies.