mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 04:00:02 +00:00
2985e88a49
* Fixing generate unique changeme * Fixing generate unique changeme 2 * Changing link to .invalid domain. Co-authored-by: Nutomic <me@nutomic.com>
5 lines
167 B
PL/PgSQL
5 lines
167 B
PL/PgSQL
create or replace function generate_unique_changeme()
|
|
returns text language sql
|
|
as $$
|
|
select 'http://changeme.invalid/' || substr(md5(random()::text), 0, 25);
|
|
$$;
|