update script was missing a column, fixed the job titles addition on a new job post
break;
case 'insert':
- $this->checkNewJobTitles();
+
$job = $this->insertEntry();
$this->job_id = $job['fieldData']['id'];
+ $this->checkNewJobTitles();
$updated = $this->getUpdatedTime($this->job_id);
if ($job['status']) {
-- Gaslight Media Members Database - Job Postings
-- File Created: 11/20/17 15:27:15
--- Database Version: 0.0.2
+-- Database Version: 0.0.3
-- Database Creation Script
--
-- This file is called to create a new set of tables for this
job_approved_message TEXT NULL, -- Event approved message
job_to_email TINYTEXT NULL, -- To Email Address
job_from_email TINYTEXT NULL, -- From Email Address
+ job_email_notification TEXT NULL, -- Email notification message
PRIMARY KEY (id)
);