X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/d4925a8b60f04674885e30d9316dc0263f8b9a84..b293ff8ad52fc76ba0c44783e3982418114d6b08:/sql/Pg-upgrade2/convert_real_qty.sql diff --git a/sql/Pg-upgrade2/convert_real_qty.sql b/sql/Pg-upgrade2/convert_real_qty.sql new file mode 100644 index 000000000..5e0ea6531 --- /dev/null +++ b/sql/Pg-upgrade2/convert_real_qty.sql @@ -0,0 +1,7 @@ +-- @tag: convert_real_qty +-- @description: Spaltentyp auf Numeric anstelle von Real für qty +-- @depends: release_3_6_0 +ALTER TABLE orderitems ALTER column qty type numeric(25,5); +ALTER TABLE invoice ALTER column qty type numeric(25,5); + +