Skip to content

Commit 3fab2bf

Browse files
rename
1 parent 9cd04dd commit 3fab2bf

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

crates/pgt_test_utils/testdb_migrations/0001-setup-roles.sql renamed to crates/pgt_test_utils/testdb_migrations/0001_setup-roles.sql

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
do $$
22
begin
3+
34
if not exists (
45
select from pg_catalog.pg_roles
56
where rolname = 'admin'
@@ -20,4 +21,6 @@ if not exists (
2021
) then
2122
create role test_nologin;
2223
end if;
23-
end;
24+
25+
end
26+
$$;

0 commit comments

Comments
 (0)