Fix SQL
This commit is contained in:
parent
e1e56eae86
commit
26faa009d2
10 changed files with 4 additions and 610 deletions
|
|
@ -1,22 +0,0 @@
|
|||
CREATE FUNCTION limit_user() RETURNS trigger
|
||||
LANGUAGE plpgsql
|
||||
AS $$
|
||||
|
||||
begin
|
||||
NEW.ac_user := substring(NEW.ac_user from 1 for 80);
|
||||
return NEW;
|
||||
end; $$;
|
||||
CREATE FUNCTION upgrade_repo(p_version integer) RETURNS void
|
||||
LANGUAGE plpgsql
|
||||
AS $$
|
||||
declare
|
||||
is_mono integer;
|
||||
begin
|
||||
select count (*) into is_mono from information_schema.tables where table_name='repo_version';
|
||||
if is_mono = 1 then
|
||||
update repo_version set val=p_version;
|
||||
else
|
||||
update version set val=p_version;
|
||||
end if;
|
||||
end;
|
||||
$$;
|
||||
Loading…
Add table
Add a link
Reference in a new issue