Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split schema and extension creation #249

Merged
merged 1 commit into from
May 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/main/resources/db-master-changelog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1407,11 +1407,15 @@
<customChange class="no.ndla.taxonomy.migration.CleanUpDuplicateResourcesSqlChange"/>
</changeSet>

<changeSet id="20230823 Add constraint to avoid same content_uri for resources" author="Gunnar Velle">
<validCheckSum>8:4437aae86611f78da57268f45c3cd929</validCheckSum>
<changeSet id="20230823 Add schema and extension" author="Gunnar Velle" runAlways="true" >
<!-- Need a separate extensions schema to make cloning schemas possible! -->
<sql>CREATE SCHEMA IF NOT EXISTS extensions</sql>
<sql>CREATE EXTENSION IF NOT EXISTS "btree_gist" schema extensions</sql>
</changeSet>

<changeSet id="20230823 Add constraint to avoid same content_uri for resources" author="Gunnar Velle">
<validCheckSum>8:4437aae86611f78da57268f45c3cd929</validCheckSum>
<validCheckSum>9:6e04afdd84254e39c95fd6cbfd119cac</validCheckSum>
<sql>
ALTER TABLE node
ADD CONSTRAINT unique_content_uri_for_resource
Expand Down
Loading