Skip to content

Commit

Permalink
Increase sequence start (#7065)
Browse files Browse the repository at this point in the history
* Deactivated records should get 409 on GET requests

* Sequence should start at 100000
  • Loading branch information
amontenegro committed Aug 12, 2024
1 parent 405e84e commit f5cbdd2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
<sequenceExists sequenceName="profile_email_domain_seq"/>
</not>
</preConditions>
<createSequence sequenceName="profile_email_domain_seq"/>
<createSequence sequenceName="profile_email_domain_seq" startValue="100000"/>
</changeSet>

<changeSet id="CREATE-PROFILE-EMAIL-DOMAIN-AUTOCOLS" author="Andrej Romanov" dbms="hsqldb">
<addAutoIncrement tableName="profile_email_domain" columnName="id" columnDataType="bigint"/>
<addAutoIncrement tableName="profile_email_domain" columnName="id" columnDataType="bigint" startWith="100000"/>
</changeSet>

<changeSet id="PROFILE-EMAIL-DOMAIN-ORCID-INDEX" author="Andrej Romanov">
Expand Down

0 comments on commit f5cbdd2

Please sign in to comment.