In config.yml, remove lead_time fields as their type has changed and they're

hardly used by our customers, so better remove them to let the update to create
them again.
This commit is contained in:
Albert Cervera i Areny 2019-07-16 16:22:27 +02:00
parent fba33478aa
commit 23c26e1280
1 changed files with 8 additions and 8 deletions

View File

@ -491,14 +491,14 @@ before:
UPDATE ir_model_data set values = REPLACE(fs_values, '["style",""],', '') where fs_id like 'report_%' and model = 'ir.action.report';
UPDATE ir_model_data set fs_values = REPLACE(fs_values, '["style","company/header_A4.odt"],', '') where fs_id like 'report_%' and model = 'ir.action.report';
UPDATE ir_model_data set fs_values = REPLACE(fs_values, '["style","company/header_A4.odt"],', '') where fs_id like 'report_%' and model = 'ir.action.report';
- comment: # Change cast of lead_time on stock_location_lead_time
version: 3.4
tables: stock_location_lead_time
query: alter table stock_location_lead_time alter COLUMN lead_time type integer USING (lead_time::integer);
- comment: # Change cast of lead_time on stock_location_lead_time
version: 3.4
tables: production_lead_time
query: alter table production_lead_time alter COLUMN lead_time type integer USING (lead_time::integer);
- comment: Remove lead_time field from stock_location_lead_time. The type was float in our patch in version 3.4 but now it's better to remove and let trytond recreate it as few people are using it.
version: 5.2
fields: stock_location_lead_time.lead_time
query: ALTER TABLE stock_location_lead_time DROP COLUMN lead_time;
- comment: Remove lead_time field from production_lead_time. The type was float in our patch in version 3.4 but now it's better to remove and let trytond recreate it as few people are using it.
version: 5.2
fields: production_location_lead_time.lead_time
query: ALTER TABLE production_lead_time DROP COLUMN lead_time;
- comment: # Change cast of previous_declaration_receipt on aeat_303_report
version: 3.4
tables: aeat_303_report