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

[TASK] Add zip to company table

parent d036eb28
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,6 @@ CREATE TABLE tx_sgjobs_domain_model_job ( ...@@ -10,7 +10,6 @@ CREATE TABLE tx_sgjobs_domain_model_job (
alternative_start_date text DEFAULT '' NOT NULL, alternative_start_date text DEFAULT '' NOT NULL,
start_date int(11) unsigned DEFAULT '0' NOT NULL, start_date int(11) unsigned DEFAULT '0' NOT NULL,
company text DEFAULT '' NOT NULL, company text DEFAULT '' NOT NULL,
zip text DEFAULT '' NOT NULL,
description text DEFAULT '' NOT NULL, description text DEFAULT '' NOT NULL,
area text DEFAULT '' NOT NULL, area text DEFAULT '' NOT NULL,
contact int(11) unsigned DEFAULT '0' NOT NULL, contact int(11) unsigned DEFAULT '0' NOT NULL,
...@@ -55,6 +54,7 @@ CREATE TABLE tx_sgjobs_domain_model_company ( ...@@ -55,6 +54,7 @@ CREATE TABLE tx_sgjobs_domain_model_company (
-- Custom fields -- Custom fields
city varchar(255) DEFAULT '' NOT NULL, city varchar(255) DEFAULT '' NOT NULL,
zip text DEFAULT '' NOT NULL,
name varchar(255) DEFAULT '' NOT NULL, name varchar(255) DEFAULT '' NOT NULL,
street varchar(255) DEFAULT '' NOT NULL, street varchar(255) DEFAULT '' NOT NULL,
country varchar(255) DEFAULT '' NOT NULL, country varchar(255) 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