Created
March 26, 2014 05:14
-
-
Save psynaptic/9777251 to your computer and use it in GitHub Desktop.
truncate all drupal cache tables by sql query
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select concat('truncate table ', TABLE_NAME, ';') from information_schema.tables where TABLE_NAME like 'cache%'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment