diff --git a/mysql/tables/llx_bank_account.sql b/mysql/tables/llx_bank_account.sql index fd8c7ff67e9..c1130fedde4 100644 --- a/mysql/tables/llx_bank_account.sql +++ b/mysql/tables/llx_bank_account.sql @@ -18,6 +18,10 @@ -- $Id$ -- $Source$ -- +-- +-- courant : indique si c'est un compte courant +-- clos : le compte est-il clos ou encore ouvert +-- -- ============================================================================= create table llx_bank_account @@ -37,7 +41,3 @@ create table llx_bank_account courant smallint default 0 not null, clos smallint default 0 not null ); - - --- courant : indique si c'est un compte courant --- clos : le compte est-il clos ou encore ouvert \ No newline at end of file diff --git a/mysql/tables/llx_voyage.sql b/mysql/tables/llx_voyage.sql index 2aa4b0fbe2f..7fa9558ffab 100644 --- a/mysql/tables/llx_voyage.sql +++ b/mysql/tables/llx_voyage.sql @@ -18,6 +18,11 @@ -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -- +-- insert into llx_voyage (date_depart, date_arrivee, amount, depart, arrivee, fk_reduc) +-- values ('2002-04-21 12:05','2002-04-21 15:25',26.8,'Paris','Auray',1); + +-- insert into llx_voyage (date_depart, date_arrivee, amount, depart, arrivee, fk_reduc) +-- values ('2002-04-23 15:42','2002-04-23 19:10',26.8,'Auray','Paris',1); -- =================================================================== create table llx_voyage @@ -38,9 +43,3 @@ create table llx_voyage dossier varchar(50), -- numero de dossier note text ); - --- insert into llx_voyage (date_depart, date_arrivee, amount, depart, arrivee, fk_reduc) --- values ('2002-04-21 12:05','2002-04-21 15:25',26.8,'Paris','Auray',1); - --- insert into llx_voyage (date_depart, date_arrivee, amount, depart, arrivee, fk_reduc) --- values ('2002-04-23 15:42','2002-04-23 19:10',26.8,'Auray','Paris',1);