refactoring #19: rename fixture files

This commit is contained in:
2019-07-30 09:50:29 +02:00
parent a897333533
commit 6eb3991a52
9 changed files with 7 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
CREATE OR REPLACE FUNCTION random_between(low INT ,high INT)
RETURNS INT AS
$$
BEGIN
RETURN floor(random()* (high-low + 1) + low);
END;
$$ language 'plpgsql' STRICT;