Añadamos la tabla themes a la base de datos y realicemos el mantenimiento:
CREATE TABLE themes ( id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY, title VARCHAR(50), created DATETIME DEFAULT NULL, modified DATETIME DEFAULT NULL ); /* algunos valores de test */ INSERT INTO themes (title,created) VALUES ('MVC', NOW()); INSERT INTO themes (title,created) VALUES ('cakePHP', NOW()); INSERT INTO themes (title,created) VALUES ('Depression', NOW());