Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PERFORMA_REPLICA
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Muhammad Usman
PERFORMA_REPLICA
Commits
096e89a1
Commit
096e89a1
authored
Jun 13, 2019
by
nilu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
S39395897 # Client - Incoming Issues (raised by Client) #Job Title too short
parent
605d3bb7
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
Job.xml
cmsWebApp/sql/Job.xml
+1
-1
Job.sql
cmsWebApp/sql/ms/Job.sql
+1
-1
Job.sql
cmsWebApp/sql/oracle/Job.sql
+1
-1
Job.sql
cmsWebApp/sql/postgres/Job.sql
+1
-1
BaseJob.java
cmsWebApp/src/performa/orm/BaseJob.java
+1
-1
Job.xml
cmsWebApp/src/performa/orm/Job.xml
+1
-1
No files found.
cmsWebApp/sql/Job.xml
View file @
096e89a1
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
<column
name=
"object_id"
type=
"Long"
nullable=
"false"
length=
"11"
/>
<column
name=
"object_id"
type=
"Long"
nullable=
"false"
length=
"11"
/>
<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=
"job_title"
type=
"String"
nullable=
"false"
length=
"
3
0"
/>
<column
name=
"job_title"
type=
"String"
nullable=
"false"
length=
"
6
0"
/>
<column
name=
"job_description"
type=
"CLOB"
nullable=
"false"
/>
<column
name=
"job_description"
type=
"CLOB"
nullable=
"false"
/>
<column
name=
"job_status"
type=
"String"
nullable=
"false"
length=
"200"
/>
<column
name=
"job_status"
type=
"String"
nullable=
"false"
length=
"200"
/>
<column
name=
"open_date"
type=
"Date"
nullable=
"true"
/>
<column
name=
"open_date"
type=
"Date"
nullable=
"true"
/>
...
...
cmsWebApp/sql/ms/Job.sql
View file @
096e89a1
...
@@ -8,7 +8,7 @@ CREATE TABLE tl_job (
...
@@ -8,7 +8,7 @@ CREATE TABLE tl_job (
object_last_updated_date
datetime
DEFAULT
getdate
()
NOT
NULL
,
object_last_updated_date
datetime
DEFAULT
getdate
()
NOT
NULL
,
object_created_date
datetime
DEFAULT
getdate
()
NOT
NULL
object_created_date
datetime
DEFAULT
getdate
()
NOT
NULL
,
,
job_title
varchar
(
3
0
)
NOT
NULL
,
job_title
varchar
(
6
0
)
NOT
NULL
,
job_description
text
NOT
NULL
,
job_description
text
NOT
NULL
,
job_status
varchar
(
200
)
NOT
NULL
,
job_status
varchar
(
200
)
NOT
NULL
,
open_date
datetime
NULL
,
open_date
datetime
NULL
,
...
...
cmsWebApp/sql/oracle/Job.sql
View file @
096e89a1
...
@@ -9,7 +9,7 @@ CREATE TABLE tl_job (
...
@@ -9,7 +9,7 @@ CREATE TABLE tl_job (
object_last_updated_date
date
DEFAULT
SYSDATE
NOT
NULL
,
object_last_updated_date
date
DEFAULT
SYSDATE
NOT
NULL
,
object_created_date
date
DEFAULT
SYSDATE
NOT
NULL
object_created_date
date
DEFAULT
SYSDATE
NOT
NULL
,
,
job_title
varchar2
(
3
0
)
NOT
NULL
,
job_title
varchar2
(
6
0
)
NOT
NULL
,
job_description
clob
NOT
NULL
,
job_description
clob
NOT
NULL
,
job_status
varchar2
(
200
)
NOT
NULL
,
job_status
varchar2
(
200
)
NOT
NULL
,
open_date
date
NULL
,
open_date
date
NULL
,
...
...
cmsWebApp/sql/postgres/Job.sql
View file @
096e89a1
...
@@ -9,7 +9,7 @@ CREATE TABLE tl_job (
...
@@ -9,7 +9,7 @@ CREATE TABLE tl_job (
object_last_updated_date
timestamp
DEFAULT
NOW
()
NOT
NULL
,
object_last_updated_date
timestamp
DEFAULT
NOW
()
NOT
NULL
,
object_created_date
timestamp
DEFAULT
NOW
()
NOT
NULL
object_created_date
timestamp
DEFAULT
NOW
()
NOT
NULL
,
,
job_title
varchar
(
3
0
)
NOT
NULL
,
job_title
varchar
(
6
0
)
NOT
NULL
,
job_description
text
NOT
NULL
,
job_description
text
NOT
NULL
,
job_status
varchar
(
200
)
NOT
NULL
,
job_status
varchar
(
200
)
NOT
NULL
,
open_date
timestamp
NULL
,
open_date
timestamp
NULL
,
...
...
cmsWebApp/src/performa/orm/BaseJob.java
View file @
096e89a1
...
@@ -852,7 +852,7 @@ public abstract class BaseJob extends BaseBusinessClass
...
@@ -852,7 +852,7 @@ public abstract class BaseJob extends BaseBusinessClass
Map
metaInfo
=
new
HashMap
();
Map
metaInfo
=
new
HashMap
();
metaInfo
.
put
(
"dbcol"
,
"job_title"
);
metaInfo
.
put
(
"dbcol"
,
"job_title"
);
metaInfo
.
put
(
"length"
,
"
3
0"
);
metaInfo
.
put
(
"length"
,
"
6
0"
);
metaInfo
.
put
(
"mandatory"
,
"true"
);
metaInfo
.
put
(
"mandatory"
,
"true"
);
metaInfo
.
put
(
"name"
,
"JobTitle"
);
metaInfo
.
put
(
"name"
,
"JobTitle"
);
metaInfo
.
put
(
"type"
,
"String"
);
metaInfo
.
put
(
"type"
,
"String"
);
...
...
cmsWebApp/src/performa/orm/Job.xml
View file @
096e89a1
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
<TABLE
name=
"tl_job"
tablePrefix=
"object"
polymorphic=
"FALSE"
>
<TABLE
name=
"tl_job"
tablePrefix=
"object"
polymorphic=
"FALSE"
>
<ATTRIB
name=
"JobTitle"
type=
"String"
dbcol=
"job_title"
length=
"
3
0"
mandatory=
"true"
/>
<ATTRIB
name=
"JobTitle"
type=
"String"
dbcol=
"job_title"
length=
"
6
0"
mandatory=
"true"
/>
<ATTRIB
name=
"JobDescription"
type=
"String"
dbcol=
"job_description"
mandatory=
"true"
/>
<ATTRIB
name=
"JobDescription"
type=
"String"
dbcol=
"job_description"
mandatory=
"true"
/>
<ATTRIB
name=
"JobStatus"
type=
"JobStatus"
dbcol=
"job_status"
attribHelper=
"EnumeratedAttributeHelper"
mandatory=
"true"
/>
<ATTRIB
name=
"JobStatus"
type=
"JobStatus"
dbcol=
"job_status"
attribHelper=
"EnumeratedAttributeHelper"
mandatory=
"true"
/>
<ATTRIB
name=
"OpenDate"
type=
"Date"
dbcol=
"open_date"
/>
<ATTRIB
name=
"OpenDate"
type=
"Date"
dbcol=
"open_date"
/>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment