10 lines
546 B
SQL
Executable file
10 lines
546 B
SQL
Executable file
--
|
|
-- Script run when an upgrade of Dolibarr is done. Whatever is the Dolibarr version.
|
|
--
|
|
|
|
-- Add copper surcharge fields to import_line table (v2.8)
|
|
ALTER TABLE llx_importzugferd_import_line ADD COLUMN copper_surcharge double(24,8) DEFAULT NULL AFTER ean;
|
|
ALTER TABLE llx_importzugferd_import_line ADD COLUMN copper_surcharge_basis_qty double(24,8) DEFAULT NULL AFTER copper_surcharge;
|
|
|
|
-- Add fk_datanorm field to import_line table (v2.9)
|
|
ALTER TABLE llx_importzugferd_import_line ADD COLUMN fk_datanorm integer DEFAULT NULL AFTER fk_product;
|