Merge pull request #6250 from gnovaro/patch-6

Bug: Fix missing ,
This commit is contained in:
Laurent Destailleur 2017-01-12 10:06:01 +01:00 committed by GitHub
commit 14fb01da11

View File

@ -48,6 +48,6 @@ create table llx_loan
fk_projet integer DEFAULT NULL,
fk_user_author integer DEFAULT NULL,
fk_user_modif integer DEFAULT NULL
fk_user_modif integer DEFAULT NULL,
active tinyint DEFAULT 1 NOT NULL
)ENGINE=innodb;