Commit ebeb3f4e by Harsh Shah

Finish Hotfix-20190701

parents bed8c30c 516f7041
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<column name="object_last_updated_date" type="Date" nullable="false" length="22"/> <column name="object_last_updated_date" type="Date" nullable="false" length="22"/>
<column name="object_created_date" type="Date" nullable="false" length="22"/> <column name="object_created_date" type="Date" nullable="false" length="22"/>
<column name="template_name" type="String" nullable="true" length="100"/> <column name="template_name" type="String" nullable="true" length="100"/>
<column name="job_title" type="String" nullable="false" length="30"/> <column name="job_title" type="String" nullable="false" length="60"/>
<column name="job_description" type="CLOB" nullable="false"/> <column name="job_description" type="CLOB" nullable="false"/>
<column name="ref_number" type="String" nullable="true" length="10"/> <column name="ref_number" type="String" nullable="true" length="10"/>
<column name="google_address_text" type="String" nullable="false" length="300"/> <column name="google_address_text" type="String" nullable="false" length="300"/>
......
...@@ -9,7 +9,7 @@ CREATE TABLE tl_assessment_template ( ...@@ -9,7 +9,7 @@ CREATE TABLE tl_assessment_template (
object_created_date datetime DEFAULT getdate() NOT NULL object_created_date datetime DEFAULT getdate() NOT NULL
, ,
template_name varchar(100) NULL, template_name varchar(100) NULL,
job_title varchar(30) NOT NULL, job_title varchar(60) NOT NULL,
job_description text NOT NULL, job_description text NOT NULL,
ref_number varchar(10) NULL, ref_number varchar(10) NULL,
google_address_text varchar(300) NOT NULL, google_address_text varchar(300) NOT NULL,
......
...@@ -10,7 +10,7 @@ CREATE TABLE tl_assessment_template ( ...@@ -10,7 +10,7 @@ CREATE TABLE tl_assessment_template (
object_created_date date DEFAULT SYSDATE NOT NULL object_created_date date DEFAULT SYSDATE NOT NULL
, ,
template_name varchar2(100) NULL, template_name varchar2(100) NULL,
job_title varchar2(30) NOT NULL, job_title varchar2(60) NOT NULL,
job_description clob NOT NULL, job_description clob NOT NULL,
ref_number varchar2(10) NULL, ref_number varchar2(10) NULL,
google_address_text varchar2(300) NOT NULL, google_address_text varchar2(300) NOT NULL,
......
...@@ -10,7 +10,7 @@ CREATE TABLE tl_assessment_template ( ...@@ -10,7 +10,7 @@ CREATE TABLE tl_assessment_template (
object_created_date timestamp DEFAULT NOW() NOT NULL object_created_date timestamp DEFAULT NOW() NOT NULL
, ,
template_name varchar(100) NULL, template_name varchar(100) NULL,
job_title varchar(30) NOT NULL, job_title varchar(60) NOT NULL,
job_description text NOT NULL, job_description text NOT NULL,
ref_number varchar(10) NULL, ref_number varchar(10) NULL,
google_address_text varchar(300) NOT NULL, google_address_text varchar(300) NOT NULL,
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<TABLE name="tl_assessment_template" tablePrefix="object" polymorphic="FALSE"> <TABLE name="tl_assessment_template" tablePrefix="object" polymorphic="FALSE">
<ATTRIB name="TemplateName" type="String" dbcol="template_name" length="100" uniqueGroup="TemplateID"/> <ATTRIB name="TemplateName" type="String" dbcol="template_name" length="100" uniqueGroup="TemplateID"/>
<ATTRIB name="JobTitle" type="String" dbcol="job_title" length="30" mandatory="true"/> <ATTRIB name="JobTitle" type="String" dbcol="job_title" length="60" mandatory="true"/>
<ATTRIB name="JobDescription" type="String" dbcol="job_description" mandatory="true"/> <ATTRIB name="JobDescription" type="String" dbcol="job_description" mandatory="true"/>
<ATTRIB name="ReferenceNumber" type="String" dbcol="ref_number" length="10"/> <ATTRIB name="ReferenceNumber" type="String" dbcol="ref_number" length="10"/>
<ATTRIB name="GoogleAddressText" type="String" dbcol="google_address_text" mandatory="true" length="300" /> <ATTRIB name="GoogleAddressText" type="String" dbcol="google_address_text" mandatory="true" length="300" />
......
...@@ -378,7 +378,7 @@ public abstract class BaseAssessmentCriteriaTemplate extends BaseBusinessClass ...@@ -378,7 +378,7 @@ public abstract class BaseAssessmentCriteriaTemplate extends BaseBusinessClass
Map metaInfo = new HashMap (); Map metaInfo = new HashMap ();
metaInfo.put ("dbcol", "job_title"); metaInfo.put ("dbcol", "job_title");
metaInfo.put ("length", "30"); metaInfo.put ("length", "60");
metaInfo.put ("mandatory", "true"); metaInfo.put ("mandatory", "true");
metaInfo.put ("name", "JobTitle"); metaInfo.put ("name", "JobTitle");
metaInfo.put ("type", "String"); metaInfo.put ("type", "String");
......
ALTER TABLE tl_assessment_template ALTER COLUMN job_title TYPE character varying(60);
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment