Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(noalyss-folder): fix schema of function #109

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions postgres/noalyss-folder/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -644,10 +644,10 @@ $$;
ALTER FUNCTION comptaproc.check_balance(p_grpt integer) OWNER TO prisma;

--
-- Name: check_periode(); Type: FUNCTION; Schema: comptaproc; Owner: prisma
-- Name: check_periode(); Type: FUNCTION; Schema: public; Owner: prisma
--

CREATE FUNCTION comptaproc.check_periode() RETURNS trigger
CREATE FUNCTION public.check_periode() RETURNS trigger
LANGUAGE plpgsql
AS $$
declare
Expand All @@ -669,7 +669,7 @@ end;
$$;


ALTER FUNCTION comptaproc.check_periode() OWNER TO prisma;
ALTER FUNCTION public.check_periode() OWNER TO prisma;

--
-- Name: correct_sequence(text, text, text); Type: FUNCTION; Schema: comptaproc; Owner: prisma
Expand Down