Skip to content
Snippets Groups Projects
Commit d652dbb9 authored by Goffin Simon's avatar Goffin Simon
Browse files

[FIX] fleet: Impossible to upgrade fleet


With PostgreSQL version 9.6, it was impossible to install the module fleet
A traceback was raised saying:

could not determine which collation to use for view column "cost_type"

closes odoo/odoo#61829

Signed-off-by: default avatarSimon Goffin (sig) <sig@openerp.com>
parent bf468363
Branches
Tags
No related merge requests found
......@@ -111,7 +111,7 @@ SELECT
fuel_type,
date_start,
COST,
cost_type
'service' as cost_type
FROM
service_costs sc
UNION ALL (
......@@ -124,7 +124,7 @@ UNION ALL (
fuel_type,
date_start,
COST,
cost_type
'contract' as cost_type
FROM
contract_costs cc)
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment