X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=sql%2FPg-upgrade2%2Fbuchungsgruppen_sortkey.sql;h=a04835d0bc1722fae8af055f20a501cf4d040b59;hb=77527022ef849e10970f285717b9db5d383a1a2e;hp=c78ee8973944691cf72d210f032afccca85e9800;hpb=75f484cf53923b2734363b5ed3c81623037aeac3;p=kivitendo-erp.git diff --git a/sql/Pg-upgrade2/buchungsgruppen_sortkey.sql b/sql/Pg-upgrade2/buchungsgruppen_sortkey.sql index c78ee8973..a04835d0b 100644 --- a/sql/Pg-upgrade2/buchungsgruppen_sortkey.sql +++ b/sql/Pg-upgrade2/buchungsgruppen_sortkey.sql @@ -1,6 +1,7 @@ -- @tag: buchungsgruppen_sortkey --- @description: Neue Spalte für Sortierreihenfolge der Buchungsgruppen +-- @description: Neue Spalte für Sortierreihenfolge der Buchungsgruppen -- @depends: release_2_4_1 +-- @charset: utf-8 ALTER TABLE buchungsgruppen ADD COLUMN sortkey integer; CREATE SEQUENCE tmp_counter; UPDATE buchungsgruppen SET sortkey = nextval('tmp_counter');