llx_tva.sql 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. -- ===================================================================
  2. -- Copyright (C) 2002-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
  3. -- Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.com>
  4. --
  5. -- This program is free software; you can redistribute it and/or modify
  6. -- it under the terms of the GNU General Public License as published by
  7. -- the Free Software Foundation; either version 3 of the License, or
  8. -- (at your option) any later version.
  9. --
  10. -- This program is distributed in the hope that it will be useful,
  11. -- but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. -- GNU General Public License for more details.
  14. --
  15. -- You should have received a copy of the GNU General Public License
  16. -- along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. --
  18. -- ===================================================================
  19. create table llx_tva
  20. (
  21. rowid integer AUTO_INCREMENT PRIMARY KEY,
  22. tms timestamp,
  23. datec datetime, -- Create date
  24. datep date, -- date de paiement
  25. datev date, -- date de valeur
  26. amount real NOT NULL DEFAULT 0,
  27. fk_typepayment integer NULL,
  28. num_payment varchar(50),
  29. label varchar(255),
  30. entity integer DEFAULT 1 NOT NULL, -- multi company id
  31. note text,
  32. fk_bank integer,
  33. fk_user_creat integer, -- utilisateur who create record
  34. fk_user_modif integer, -- utilisateur who modify record
  35. import_key varchar(14)
  36. )ENGINE=innodb;