Index: infusionBuilder-deploy/create-and-clear-builder-cache.sql =================================================================== --- infusionBuilder-deploy/create-and-clear-builder-cache.sql (revision 8950) +++ infusionBuilder-deploy/create-and-clear-builder-cache.sql (working copy) @@ -1,3 +1,3 @@ use build_cache; -create table if not exists cache(id VARCHAR(500) NOT NULL, minified BOOLEAN NOT NULL DEFAULT 1, counter INT NOT NULL DEFAULT 0, UNIQUE ID(id, minified) );\ -delete from cache; +drop table cache; +create table cache(id VARCHAR(500) NOT NULL, minified BOOLEAN NOT NULL DEFAULT 1, counter INT NOT NULL DEFAULT 0, UNIQUE ID(id, minified) );