Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions db/cats_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -299,18 +299,6 @@ CREATE TABLE `candidate_joborder_status_history` (

/*Data for the table `candidate_joborder_status_history` */

/*Table structure for table `candidate_jobordrer_status_type` */

CREATE TABLE `candidate_jobordrer_status_type` (
`candidate_status_type_id` int(11) NOT NULL DEFAULT '0',
`short_description` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`can_be_scheduled` int(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`candidate_status_type_id`),
KEY `IDX_short_description` (`short_description`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

/*Data for the table `candidate_jobordrer_status_type` */

/*Table structure for table `candidate_source` */

CREATE TABLE `candidate_source` (
Expand Down
4 changes: 4 additions & 0 deletions modules/install/Schema.php
Original file line number Diff line number Diff line change
Expand Up @@ -1447,6 +1447,10 @@ public static function get()
SET short_description = \'Not reached\'
WHERE activity_type_id = 100;
',
'377' => '
DROP TABLE IF EXISTS `candidate_jobordrer_status_type`;
DROP TABLE IF EXISTS `candidate_joborder_status_type`;
',

);
}
Expand Down
1 change: 0 additions & 1 deletion modules/install/backupDB.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ function dumpDB($db, $file, $useStatus = false, $splitFiles = true, $siteID = -1
if ($table == 'address_parser_failures') continue;
if ($table == 'admin_user') continue;
if ($table == 'admin_user_login') continue;
if ($table == 'candidate_joborder_status_type') continue;
if ($table == 'timecard_user') continue;

$text .= 'DROP TABLE IF EXISTS `' . $table . '`((ENDOFQUERY))'."\n";
Expand Down
Loading