-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #327 from SlateFoundation/develop
Release: v2.17.6
- Loading branch information
Showing
2 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[holomapping] | ||
root = "fixtures" | ||
files = "*.sql" | ||
files = "**/*.sql" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/*!40103 SET TIME_ZONE='+00:00' */; | ||
/*!40101 SET character_set_client = utf8 */; | ||
|
||
CREATE TABLE `connector_jobs` ( | ||
`ID` int(10) unsigned NOT NULL AUTO_INCREMENT, | ||
`Class` enum('Emergence\\Connectors\\Job','Slate\\Connectors\\Job') NOT NULL, | ||
`Created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
`CreatorID` int(11) DEFAULT NULL, | ||
`Title` varchar(255) DEFAULT NULL, | ||
`Handle` varchar(255) NOT NULL, | ||
`Status` enum('Template','Pending','InProgress','Completed','Failed','Abandoned') NOT NULL DEFAULT 'Pending', | ||
`Connector` varchar(255) NOT NULL, | ||
`TemplateID` int(10) unsigned DEFAULT NULL, | ||
`Direction` enum('In','Out','Both') DEFAULT NULL, | ||
`Config` json NOT NULL, | ||
`Results` json DEFAULT NULL, | ||
PRIMARY KEY (`ID`), | ||
UNIQUE KEY `Handle` (`Handle`) | ||
) ENGINE=MyISAM DEFAULT CHARSET=utf8; |