Skip to content

Commit

Permalink
FIX #9934
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Nov 5, 2018
1 parent 02eaaaa commit 98a3af6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion htdocs/install/mysql/migration/6.0.0-7.0.0.sql
Expand Up @@ -717,4 +717,5 @@ ALTER TABLE llx_facture_rec_extrafields ADD INDEX idx_facture_rec_extrafields (f
UPDATE llx_cronjob set entity = 1 where entity = 0 and label in ('RecurringInvoices', 'SendEmailsReminders');
UPDATE llx_cronjob set entity = 0 where entity = 1 and label in ('PurgeDeleteTemporaryFilesShort', 'MakeLocalDatabaseDumpShort');

ALTER TABLE llx_c_shipment_mode CHANGE COLUMN tracking tracking VARCHAR(255) DEFAULT NULL;
-- VMYSQL4.3 ALTER TABLE llx_c_shipment_mode MODIFY COLUMN tracking varchar(255) NULL;
-- VPGSQL8.2 ALTER TABLE llx_c_shipment_mode ALTER COLUMN tracking DROP NOT NULL;
2 changes: 1 addition & 1 deletion htdocs/install/mysql/tables/llx_c_shipment_mode.sql
Expand Up @@ -23,7 +23,7 @@ create table llx_c_shipment_mode
code varchar(30) NOT NULL,
libelle varchar(50) NOT NULL,
description text,
tracking varchar(255) NOT NULL,
tracking varchar(255) NULL,
active tinyint DEFAULT 0,
module varchar(32) NULL
)ENGINE=innodb;

0 comments on commit 98a3af6

Please sign in to comment.