Skip to content
Snippets Groups Projects
Commit 67c6f758 authored by Torsten Oppermann's avatar Torsten Oppermann
Browse files

[TASK] Zip code is now varchar data ttype

parent e27fbef6
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ CREATE TABLE tx_sgjobs_domain_model_company (
-- Custom fields
city varchar(255) DEFAULT '' NOT NULL,
zip text DEFAULT '' NOT NULL,
zip varchar(255) DEFAULT '' NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
street varchar(255) DEFAULT '' NOT NULL,
country varchar(255) DEFAULT '' NOT NULL,
......@@ -155,7 +155,7 @@ CREATE TABLE tx_sgjobs_domain_model_job_application (
last_name text DEFAULT '' NOT NULL,
street text DEFAULT '' NOT NULL,
city text DEFAULT '' NOT NULL,
zip text DEFAULT '' NOT NULL,
zip varchar(255) DEFAULT '' NOT NULL,
country text DEFAULT '' NOT NULL,
nationality text DEFAULT '' NOT NULL,
education 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