Entfernt gifi und pos_ustva
[kivitendo-erp.git] / sql / Pg-upgrade2 / drop_gifi.sql
1 -- @tag: drop_gifi
2 -- @description: Entfernt Spalten gifi_accno und pos_ustva aus der Tabelle chart. Tabelle gifi wird gelöscht.
3 -- @depends: release_3_0_0 
4 -- @charset: utf-8
5
6   --Lösche Tabelle gifi:
7   DROP TABLE gifi;
8
9   --Lösche Spalte gifi_accno aus chart:
10   ALTER TABLE chart DROP COLUMN gifi_accno;
11
12   --Lösche Spalte pos_ustva aus chart:
13   ALTER TABLE chart DROP COLUMN pos_ustva;