Add flyway files for allocateId sequence alternative (#1830)

This commit is contained in:
Pavlo Tkach 2022-11-02 12:06:40 -04:00 committed by GitHub
parent ad4aa73328
commit ac8ead5b83
5 changed files with 40 additions and 6 deletions

View file

@ -261,11 +261,11 @@ td.section {
</tr>
<tr>
<td class="property_name">generated on</td>
<td class="property_value">2022-09-14 21:40:35.281416</td>
<td class="property_value">2022-11-01 21:02:22.179272</td>
</tr>
<tr>
<td class="property_name">last flyway file</td>
<td id="lastFlywayFile" class="property_value">V128__fix_package_promotion_id.sql</td>
<td id="lastFlywayFile" class="property_value">V129__create_allocateId_sequence_alternative.sql</td>
</tr>
</tbody>
</table>
@ -284,7 +284,7 @@ td.section {
generated on
</text>
<text text-anchor="start" x="3835.5" y="-10.8" font-family="Helvetica,sans-Serif" font-size="14.00">
2022-09-14 21:40:35.281416
2022-11-01 21:02:22.179272
</text>
<polygon fill="none" stroke="#888888" points="3748,-4 3748,-44 4013,-44 4013,-4 3748,-4" /> <!-- allocationtoken_a08ccbef -->
<g id="node1" class="node">

View file

@ -261,11 +261,11 @@ td.section {
</tr>
<tr>
<td class="property_name">generated on</td>
<td class="property_value">2022-09-14 21:40:33.388526</td>
<td class="property_value">2022-11-01 21:02:18.715344</td>
</tr>
<tr>
<td class="property_name">last flyway file</td>
<td id="lastFlywayFile" class="property_value">V128__fix_package_promotion_id.sql</td>
<td id="lastFlywayFile" class="property_value">V129__create_allocateId_sequence_alternative.sql</td>
</tr>
</tbody>
</table>
@ -284,7 +284,7 @@ td.section {
generated on
</text>
<text text-anchor="start" x="4519.5" y="-10.8" font-family="Helvetica,sans-Serif" font-size="14.00">
2022-09-14 21:40:33.388526
2022-11-01 21:02:18.715344
</text>
<polygon fill="none" stroke="#888888" points="4432,-4 4432,-44 4697,-44 4697,-4 4432,-4" /> <!-- allocationtoken_a08ccbef -->
<g id="node1" class="node">

View file

@ -126,3 +126,4 @@ V125__create_package_promotion.sql
V126__drop_autorenew_poll_message_history_id_column_in_domain_table.sql
V127__fix_user.sql
V128__fix_package_promotion_id.sql
V129__create_allocateId_sequence_alternative.sql

View file

@ -0,0 +1,21 @@
-- Copyright 2022 The Nomulus Authors. All Rights Reserved.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
CREATE SEQUENCE public."project_wide_unique_id_seq"
START WITH 59880480006
INCREMENT BY 1
MINVALUE 59880480005
NO MAXVALUE
CACHE 10;

View file

@ -1109,6 +1109,18 @@ CREATE SEQUENCE public."User_id_seq"
ALTER SEQUENCE public."User_id_seq" OWNED BY public."User".id;
--
-- Name: project_wide_unique_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.project_wide_unique_id_seq
START WITH 59880480006
INCREMENT BY 1
MINVALUE 59880480005
NO MAXVALUE
CACHE 10;
--
-- Name: ClaimsList revision_id; Type: DEFAULT; Schema: public; Owner: -
--