Hi,

4.8.2011 11:00, Katja Lampela kirjoitti:
CREATE TABLE cache_hash ( id int(11) unsigned NOT NULL auto_increment,
hash varchar(32) NOT NULL default '', content mediumblob, tstamp int(11)
unsigned NOT NULL default '0', ident varchar(32) NOT NULL default '',
PRIMARY KEY (id), KEY hash (hash) ) ENGINE=InnoDB;

But even I hit the update button the tables don't get created.

Can you say if it would be safe to try the following:

DROP TABLE IF EXISTS cache_hash;
CREATE TABLE cache_hash ( id int(11) unsigned NOT NULL auto_increment, hash varchar(32) NOT NULL default '', content mediumblob, tstamp int(11) unsigned NOT NULL default '0', ident varchar(32) NOT NULL default '', PRIMARY KEY (id), KEY hash (hash) ) ENGINE=InnoDB;
_______________________________________________
TYPO3-english mailing list
TYPO3-english@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-english

Reply via email to