15 lines
887 B
MySQL
15 lines
887 B
MySQL
|
CREATE TABLE `crpm_95e998_c8cd2b` (
|
||
|
`id` BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
||
|
`test_case_name` varchar(255) DEFAULT NULL COMMENT 'testCaseName',
|
||
|
`test_description` varchar(255) DEFAULT NULL COMMENT 'testDescription',
|
||
|
`test_priority` varchar(255) DEFAULT NULL COMMENT 'testPriority',
|
||
|
`test_status` varchar(255) DEFAULT NULL COMMENT 'testStatus',
|
||
|
`last_executed_time` varchar(255) DEFAULT NULL COMMENT 'lastExecutedTime',
|
||
|
`total_executions` varchar(255) DEFAULT NULL COMMENT 'totalExecutions',
|
||
|
`passed_count` varchar(255) DEFAULT NULL COMMENT 'passedCount',
|
||
|
`failed_count` varchar(255) DEFAULT NULL COMMENT 'failedCount',
|
||
|
`is_automated` varchar(255) DEFAULT NULL COMMENT 'isAutomated',
|
||
|
`script_path` varchar(255) DEFAULT NULL COMMENT 'scriptPath',
|
||
|
`linked_defects` varchar(255) DEFAULT NULL COMMENT 'linkedDefects',
|
||
|
`test_data_set` varchar(255) DEFAULT NULL COMMENT 'testDataSet'
|
||
|
);
|