Fix missing ,

This commit is contained in:
Gustavo Novaro 2017-01-08 01:59:04 -03:00 committed by GitHub
parent 785b2d46b3
commit 3e77fed815

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;