blob: d09487757c48131f4f5108055dfed59f0a03e3c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
printf "pg_uuidv7 is installed, you still need to add it to postgresql.conf.
shared_preload_libraries = 'pg_uuidv7'
After that you will need to restart postgres. Then you can load the extension with:
CREATE EXTENSION pg_uuidv7;
"
}
pre_remove() {
printf "After removing pg_uuidv7 you will need to remove it from postgresql.conf
shared_preload_libraries = ''
And delete the extension
DROP EXTENSION pg_uuidv7;
Then restart the postgresql server."
}
|