The best information I can get is
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 'desc VARCHAR (1000), postdate DATETIME DEFAULT CURRENT_TIMESTAMP)' at line 1
about my query
$wpdb->query("CREATE TABLE jobs (id MEDIUMINT NOT NULL AUTO_INCREMENT PRIMARY KEY, title VARCHAR (50), desc VARCHAR (1000), postdate DATETIME DEFAULT CURRENT_TIMESTAMP) $charset_collate")
What is the error? I know it's probably obvious, so forgive me (I'm a n00b). Regarding the postdate
column, I was taking the syntax straight from the answer on mysql automatically store record creation timestamp.