Created
June 23, 2015 00:40
-
-
Save onecooltaco/e7e6792d88b1b3df1063 to your computer and use it in GitHub Desktop.
Drupal Troubleshooting.
This file contains hidden or 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
| /* | |
| Getting “warning: Table 'dbname.semaphore' doesn't exist query: SELECT expire, value FROM semaphore” | |
| when updating DB or running Drush commands. | |
| Try running this query on your database. | |
| */ | |
| CREATE TABLE semaphore ( `name` VARCHAR(255) NOT NULL DEFAULT '', `value` VARCHAR(255) NOT NULL DEFAULT '', `expire` DOUBLE NOT NULL, PRIMARY KEY (name), INDEX expire (expire) ) /*!40100 DEFAULT CHARACTER SET UTF8 */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment