Add pgcrypto extension on yugabytedb.

This commit is contained in:
Kavin 2023-08-14 09:52:59 +01:00
parent 657e63332e
commit 66abab9389
No known key found for this signature in database
GPG Key ID: 6E4598CA5C92C41F
2 changed files with 3 additions and 0 deletions

View File

@ -0,0 +1,2 @@
CREATE EXTENSION pgcrypto;
--rollback DROP EXTENSION IF EXISTS pgcrypto;

View File

@ -7,6 +7,7 @@
<changeSet id="0-1" author="kavin" runInTransaction="false">
<sqlFile path="0-1-init.sql" relativeToChangelogFile="true"/>
<sqlFile path="0-1-init-crdb.sql" dbms="cockroachdb" relativeToChangelogFile="true"/>
<sqlFile path="0-1-init-yb.sql" dbms="yugabytedb" relativeToChangelogFile="true"/>
<sqlFile path="0-1-init-pg.sql" dbms="postgresql,yugabytedb" relativeToChangelogFile="true"/>
</changeSet>