Skip to content
Snippets Groups Projects
Commit 41cd5dae authored by Anton Bagliy's avatar Anton Bagliy
Browse files

FIX: db patch for token table #430

parent b383ec16
Branches
No related merge requests found
DROP FUNCTION IF EXISTS public.getauthtokens(paccountid integer);
CREATE OR REPLACE FUNCTION public.getauthtokens(paccountid integer)
RETURNS TABLE("AccountID" integer, "Created" timestamp without time zone, "Accessed" timestamp without time zone, "Mask" integer, "Token" character varying)
RETURNS TABLE("AccountID" integer, "Created" timestamp without time zone, "Accessed" timestamp without time zone, "Mask" integer, "Token" character)
LANGUAGE sql
AS $function$
-- select * from public.getauthtokens(:paccountid -- put the paccountid parameter value instead of 'paccountid' (int4));
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment