Most of them are exactly the same as we use for Numerus, but with the main application schema changed to camper. Closes #1
11 lines
129 B
PL/PgSQL
11 lines
129 B
PL/PgSQL
-- Verify camper:extension_pgcrypto on pg
|
|
|
|
begin;
|
|
|
|
select 1 / count(*)
|
|
from pg_extension
|
|
where extname = 'pgcrypto'
|
|
;
|
|
|
|
rollback;
|