New: Add hour and min in delivery dates
This commit is contained in:
parent
af195594a4
commit
241c4e76cd
@ -36,3 +36,6 @@ ALTER TABLE llx_notify ADD COLUMN fk_user integer NULL after fk_contact;
|
|||||||
ALTER TABLE llx_notify ADD COLUMN type varchar(16) DEFAULT 'email';
|
ALTER TABLE llx_notify ADD COLUMN type varchar(16) DEFAULT 'email';
|
||||||
|
|
||||||
ALTER TABLE llx_actioncomm MODIFY label varchar(128) NOT NULL;
|
ALTER TABLE llx_actioncomm MODIFY label varchar(128) NOT NULL;
|
||||||
|
|
||||||
|
ALTER TABLE llx_expedition MODIFY date_expedition datetime;
|
||||||
|
ALTER TABLE llx_expedition MODIFY date_delivery datetime DEFAULT NULL;
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
-- ===================================================================
|
-- ===================================================================
|
||||||
-- Copyright (C) 2003-2008 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
-- Copyright (C) 2003-2010 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
-- Copyright (C) 2008-2010 Regis Houssin <regis@dolibarr.fr>
|
-- Copyright (C) 2008-2010 Regis Houssin <regis@dolibarr.fr>
|
||||||
--
|
--
|
||||||
-- This program is free software; you can redistribute it and/or modify
|
-- This program is free software; you can redistribute it and/or modify
|
||||||
@ -32,8 +32,8 @@ create table llx_expedition
|
|||||||
fk_user_author integer, -- createur
|
fk_user_author integer, -- createur
|
||||||
date_valid datetime, -- date de validation
|
date_valid datetime, -- date de validation
|
||||||
fk_user_valid integer, -- valideur
|
fk_user_valid integer, -- valideur
|
||||||
date_expedition date, -- shipping date
|
date_expedition datetime, -- shipping date
|
||||||
date_delivery date DEFAULT NULL, -- delivery date
|
date_delivery datetime DEFAULT NULL, -- delivery date
|
||||||
fk_address integer DEFAULT NULL, -- delivery address (deprecated)
|
fk_address integer DEFAULT NULL, -- delivery address (deprecated)
|
||||||
fk_expedition_methode integer,
|
fk_expedition_methode integer,
|
||||||
tracking_number varchar(50),
|
tracking_number varchar(50),
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user