Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / sql / Pg-upgrade2 / convert_real_qty.sql
1 -- @tag: convert_real_qty
2 -- @description: Spaltentyp auf Numeric anstelle von Real für qty
3 -- @depends: release_3_6_0
4 ALTER TABLE orderitems ALTER column qty type numeric(25,5);
5 ALTER TABLE invoice    ALTER column qty type numeric(25,5);
6
7