Skip to content
Snippets Groups Projects
Commit 0a3000be authored by Sergiu-Lucian Petrica's avatar Sergiu-Lucian Petrica
Browse files

Changed birthdate to string

parent d6a50c4b
No related branches found
No related tags found
No related merge requests found
...@@ -97,7 +97,7 @@ class JobApplication extends AbstractEntity { ...@@ -97,7 +97,7 @@ class JobApplication extends AbstractEntity {
protected $education = ''; protected $education = '';
/** /**
* @var int $birthDate * @var string $birthDate
* @validate NotEmpty * @validate NotEmpty
*/ */
protected $birthDate = ''; protected $birthDate = '';
......
...@@ -153,7 +153,7 @@ CREATE TABLE tx_sgjobs_domain_model_job_application ( ...@@ -153,7 +153,7 @@ CREATE TABLE tx_sgjobs_domain_model_job_application (
country text DEFAULT '' NOT NULL, country text DEFAULT '' NOT NULL,
nationality text DEFAULT '' NOT NULL, nationality text DEFAULT '' NOT NULL,
education text DEFAULT '' NOT NULL, education text DEFAULT '' NOT NULL,
birth_date int(11) unsigned DEFAULT '0' NOT NULL, birth_date text DEFAULT '' NOT NULL,
phone text DEFAULT '' NOT NULL, phone text DEFAULT '' NOT NULL,
mobile text DEFAULT '' NOT NULL, mobile text DEFAULT '' NOT NULL,
email text DEFAULT '' NOT NULL, email text DEFAULT '' NOT NULL,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment