diff --git a/mysql/tables/drop.sql b/mysql/tables/drop.sql index 76f4340fa6a..4afc079f467 100644 --- a/mysql/tables/drop.sql +++ b/mysql/tables/drop.sql @@ -101,10 +101,16 @@ drop table if exists llx_service; drop table if exists llx_soc_recontact; +drop table if exists llx_train; + drop table if exists llx_user; drop table if exists llx_ventes; +drop table if exists llx_voyage; + +drop table if exists llx_voyage_reduc; + drop table if exists login ; drop table if exists socappoint ; diff --git a/mysql/tables/llx_bank.sql b/mysql/tables/llx_bank.sql index 69692d3fdcf..18f8cf47b00 100644 --- a/mysql/tables/llx_bank.sql +++ b/mysql/tables/llx_bank.sql @@ -1,4 +1,6 @@ -- =================================================================== +-- Copyright (C) 2000-2002 Rodolphe Quiedeville +-- -- $Id$ -- $Source$ -- @@ -27,10 +29,15 @@ create table llx_bank dateo date, -- date operation amount real NOT NULL default 0, label varchar(255), - author varchar(50), + fk_account integer, + fk_user_author integer, + fk_user_rappro integer, fk_type smallint, -- CB, Virement, cheque num_releve varchar(50), num_chq int, rappro tinyint default 0, - note text + note text, + + + author varchar(40) -- a supprimer apres migration );