Skip to content

Commit

Permalink
Merge pull request #8266 from atm-florian/7.0
Browse files Browse the repository at this point in the history
 fix pgSQL install
  • Loading branch information
eldy committed Mar 2, 2018
2 parents b87db9d + 3490d37 commit ef402f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion htdocs/install/mysql/migration/6.0.0-7.0.0.sql
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion htdocs/install/mysql/tables/llx_expensereport_rules.sql
Expand Up @@ -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;

0 comments on commit ef402f4

Please sign in to comment.