*** empty log message ***

This commit is contained in:
Rodolphe Quiedeville 2002-05-11 17:51:33 +00:00
parent 868a940597
commit d1dc4b03b1
2 changed files with 15 additions and 2 deletions

View File

@ -101,10 +101,16 @@ drop table if exists llx_service;
drop table if exists llx_soc_recontact; drop table if exists llx_soc_recontact;
drop table if exists llx_train;
drop table if exists llx_user; drop table if exists llx_user;
drop table if exists llx_ventes; 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 login ;
drop table if exists socappoint ; drop table if exists socappoint ;

View File

@ -1,4 +1,6 @@
-- =================================================================== -- ===================================================================
-- Copyright (C) 2000-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
--
-- $Id$ -- $Id$
-- $Source$ -- $Source$
-- --
@ -27,10 +29,15 @@ create table llx_bank
dateo date, -- date operation dateo date, -- date operation
amount real NOT NULL default 0, amount real NOT NULL default 0,
label varchar(255), label varchar(255),
author varchar(50), fk_account integer,
fk_user_author integer,
fk_user_rappro integer,
fk_type smallint, -- CB, Virement, cheque fk_type smallint, -- CB, Virement, cheque
num_releve varchar(50), num_releve varchar(50),
num_chq int, num_chq int,
rappro tinyint default 0, rappro tinyint default 0,
note text note text,
author varchar(40) -- a supprimer apres migration
); );