view schema/updates/1008/01.import-delete.sql @ 5508:29af073c824d deactivate-users

Client: Implement reactivating of user * Add HTTP request to reactivate a deactivated user * This is done from the user's edit-dialog while typing an email for this user is necessary to complete this process.
author Fadi Abbud <fadi.abbud@intevation.de>
date Thu, 23 Sep 2021 17:33:07 +0200
parents 4f2f34f5d14d
children
line wrap: on
line source

DROP FUNCTION  import.del_import();

CREATE OR REPLACE FUNCTION import.del_import(imp_id int) RETURNS void AS
$$
DECLARE
    tmp RECORD;
BEGIN
    FOR tmp IN
        SELECT * FROM import.track_imports WHERE import_id = imp_id AND NOT deletion
    LOOP
        EXECUTE format('DELETE FROM %s WHERE id = $1', tmp.relation) USING tmp.key;
    END LOOP;
END;
$$
LANGUAGE plpgsql;