-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds test for auto increment regex validation
- Loading branch information
1 parent
72d7144
commit 33b2e09
Showing
4 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
__fixtures__/dev-env-e2e/fail-autoIncrement-validation.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,18 @@ | ||
DROP TABLE IF EXISTS `wp_a8c_cron_control_jobs`; | ||
|
||
CREATE TABLE `wp_a8c_cron_control_jobs` ( | ||
`ID` bigint unsigned , | ||
`timestamp` bigint unsigned NOT NULL, | ||
`action` varchar(255) NOT NULL, | ||
`action_hashed` varchar(32) NOT NULL, | ||
`instance` varchar(32) NOT NULL, | ||
`args` longtext NOT NULL, | ||
`schedule` varchar(255) DEFAULT NULL, | ||
`interval` int unsigned DEFAULT '0', | ||
`status` varchar(32) NOT NULL DEFAULT 'pending', | ||
`created` datetime NOT NULL, | ||
`last_modified` datetime NOT NULL, | ||
PRIMARY KEY (`ID`), | ||
UNIQUE KEY `ts_action_instance_status` (`timestamp`,`action`(191),`instance`,`status`), | ||
KEY `status` (`status`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; |
Binary file not shown.
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
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