x
1
-- File: trig_i_d_syst_credentials.eex.sql
2
-- Location: musebms/database/components/system/mscmp_syst_authn/ms_syst/api_views/syst_credentials/trig_i_d_syst_credentials.eex.sql
3
-- Project: Muse Systems Business Management System
4
--
5
-- Copyright © Lima Buttgereit Holdings LLC d/b/a Muse Systems
6
-- This file may include content copyrighted and licensed from third parties.
7
--
8
-- See the LICENSE file in the project root for license terms and conditions.
9
-- See the NOTICE file in the project root for copyright ownership information.
10
--
11
-- muse.information@musesystems.com :: https://muse.systems
12
13
BEGIN
14
15
DELETE FROM ms_syst_data.syst_credentials WHERE id = old.id RETURNING * INTO old;
16
17
RETURN old;
18
19
END;