Merge pull request #8266 from atm-florian/7.0

fix pgSQL install
This commit is contained in:
Laurent Destailleur 2018-03-02 17:42:41 +01:00 committed by GitHub
commit ef402f4bcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -437,7 +437,7 @@ CREATE TABLE llx_expensereport_rules (
fk_usergroup integer DEFAULT NULL,
fk_c_type_fees integer NOT NULL,
code_expense_rules_type varchar(50) NOT NULL,
is_for_all tinyint DEFAULT '0',
is_for_all tinyint DEFAULT 0,
entity integer DEFAULT 1
)ENGINE=innodb;

View File

@ -29,6 +29,6 @@ CREATE TABLE llx_expensereport_rules (
fk_usergroup integer DEFAULT NULL,
fk_c_type_fees integer NOT NULL,
code_expense_rules_type varchar(50) NOT NULL,
is_for_all tinyint DEFAULT '0',
is_for_all tinyint DEFAULT 0,
entity integer DEFAULT 1
) ENGINE=InnoDB;