Accountancy code on user object in prevision of the complete accountancy module

This commit is contained in:
Maxime Kohlhaas
2013-06-25 11:14:00 +02:00
parent 109d1a71cb
commit b22b604d02
4 changed files with 30 additions and 2 deletions

View File

@@ -66,4 +66,4 @@ ALTER TABLE llx_propaldet_extrafields ADD INDEX idx_propaldet_extrafields (fk_ob
DROP table llx_adherent_options;
DROP table llx_adherent_options_label;
ALTER TABLE `llx_user` ADD `accountancy_code` VARCHAR( 24 ) NULL;

View File

@@ -62,5 +62,6 @@ create table llx_user
statut tinyint DEFAULT 1,
photo varchar(255), -- filename or url of photo
lang varchar(6),
color varchar(6)
color varchar(6),
accountancy_code varchar(24) NULL
)ENGINE=innodb;