We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Just letting you know your sql table dump for creation is missing a ) on line 31 you have
DROP TABLE IF EXISTS `pe_DataMissionHashes`; CREATE TABLE IF NOT EXISTS `pe_DataMissionHashes` ( `pe_DataMissionHashes_id` bigint(20) NOT NULL AUTO_INCREMENT, `pe_DataMissionHashes_instance` smallint(5) UNSIGNED NOT NULL, `pe_DataMissionHashes_hash` varchar(150) NOT NULL, `pe_DataMissionHashes_datetime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`pe_DataMissionHashes_id`), UNIQUE KEY `UNIQUE_hash` (`pe_DataMissionHashes_hash`), KEY `pe_DataMissionHashes_instance` (`pe_DataMissionHashes_instance`) ENGINE=InnoDB DEFAULT CHARSET=utf8;
should be
DROP TABLE IF EXISTS `pe_DataMissionHashes`; CREATE TABLE IF NOT EXISTS `pe_DataMissionHashes` ( `pe_DataMissionHashes_id` bigint(20) NOT NULL AUTO_INCREMENT, `pe_DataMissionHashes_instance` smallint(5) UNSIGNED NOT NULL, `pe_DataMissionHashes_hash` varchar(150) NOT NULL, `pe_DataMissionHashes_datetime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`pe_DataMissionHashes_id`), UNIQUE KEY `UNIQUE_hash` (`pe_DataMissionHashes_hash`), KEY `pe_DataMissionHashes_instance` (`pe_DataMissionHashes_instance`) )ENGINE=InnoDB DEFAULT CHARSET=utf8;```
The text was updated successfully, but these errors were encountered:
Fixed missing closing bracket
66b4702
Fix per #30
Confirmed and fixed - thank you @robgrahamau !
Sorry, something went wrong.
szporwolik
No branches or pull requests
Just letting you know your sql table dump for creation is missing a ) on line 31 you have
should be
The text was updated successfully, but these errors were encountered: