New: Add hour and min in delivery dates

This commit is contained in:
Laurent Destailleur
2010-08-26 12:47:56 +00:00
parent af195594a4
commit 241c4e76cd
2 changed files with 6 additions and 3 deletions

View File

@@ -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_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;

View File

@@ -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>
--
-- 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
date_valid datetime, -- date de validation
fk_user_valid integer, -- valideur
date_expedition date, -- shipping date
date_delivery date DEFAULT NULL, -- delivery date
date_expedition datetime, -- shipping date
date_delivery datetime DEFAULT NULL, -- delivery date
fk_address integer DEFAULT NULL, -- delivery address (deprecated)
fk_expedition_methode integer,
tracking_number varchar(50),