llx_user_rib.sql 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. -- =============================================================================
  2. -- Copyright (C) 2015 Alexandre Spangaro <aspangaro.dolibarr@gmail.com>
  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 <http://www.gnu.org/licenses/>.
  16. --
  17. -- =============================================================================
  18. create table llx_user_rib
  19. (
  20. rowid integer AUTO_INCREMENT PRIMARY KEY,
  21. fk_user integer NOT NULL,
  22. entity integer DEFAULT 1 NOT NULL, -- multi company id
  23. datec datetime,
  24. tms timestamp,
  25. label varchar(30),
  26. bank varchar(255), -- bank name
  27. code_banque varchar(128), -- bank code
  28. code_guichet varchar(6), -- desk code
  29. number varchar(255), -- account number
  30. cle_rib varchar(5), -- key of bank account
  31. bic varchar(11), -- 11 according to ISO 9362
  32. iban_prefix varchar(34), -- full iban. 34 according to ISO 13616
  33. domiciliation varchar(255),
  34. proprio varchar(60),
  35. owner_address varchar(255)
  36. )ENGINE=innodb;