5e0ea65318a3f53bf1b0592dc9e7887ade373e23
[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