Skip to content

Commit

Permalink
Merge pull request #327 from SlateFoundation/develop
Browse files Browse the repository at this point in the history
Release: v2.17.6
  • Loading branch information
themightychris authored Feb 14, 2022
2 parents 43b2259 + c51d930 commit 52936b1
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .holo/branches/fixtures/_slate.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[holomapping]
root = "fixtures"
files = "*.sql"
files = "**/*.sql"
19 changes: 19 additions & 0 deletions fixtures/connector_jobs/_schema.sql
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;

0 comments on commit 52936b1

Please sign in to comment.