llx_prelevement_demande.sql 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. -- ===================================================================
  2. -- Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
  3. --
  4. -- This program is free software; you can redistribute it and/or modify
  5. -- it under the terms of the GNU General Public License as published by
  6. -- the Free Software Foundation; either version 3 of the License, or
  7. -- (at your option) any later version.
  8. --
  9. -- This program is distributed in the hope that it will be useful,
  10. -- but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. -- GNU General Public License for more details.
  13. --
  14. -- You should have received a copy of the GNU General Public License
  15. -- along with this program. If not, see <https://www.gnu.org/licenses/>.
  16. --
  17. -- ===================================================================
  18. create table llx_prelevement_demande
  19. (
  20. rowid integer AUTO_INCREMENT PRIMARY KEY,
  21. entity integer DEFAULT 1 NOT NULL,
  22. fk_facture integer NULL,
  23. fk_facture_fourn integer NULL,
  24. fk_salary integer NULL,
  25. sourcetype varchar(32),
  26. amount double(24,8) NOT NULL,
  27. date_demande datetime NOT NULL,
  28. traite smallint DEFAULT 0,
  29. date_traite datetime,
  30. fk_prelevement_bons integer,
  31. fk_user_demande integer NOT NULL,
  32. code_banque varchar(128),
  33. code_guichet varchar(6),
  34. number varchar(255),
  35. cle_rib varchar(5),
  36. ext_payment_id varchar(255),
  37. ext_payment_site varchar(128)
  38. )ENGINE=innodb;