mirror of
https://github.com/google/nomulus.git
synced 2025-07-25 20:18:34 +02:00
Drop autorenew poll message history id column from the domain table (#1743)
We stopped using the column since #1732.
This commit is contained in:
parent
b0e4e86586
commit
b9f8faa165
5 changed files with 1741 additions and 1739 deletions
|
@ -261,11 +261,11 @@ td.section {
|
|||
</tr>
|
||||
<tr>
|
||||
<td class="property_name">generated on</td>
|
||||
<td class="property_value">2022-08-18 20:43:24.136129</td>
|
||||
<td class="property_value">2022-08-20 00:16:00.917251</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="property_name">last flyway file</td>
|
||||
<td id="lastFlywayFile" class="property_value">V125__create_package_promotion.sql</td>
|
||||
<td id="lastFlywayFile" class="property_value">V126__drop_autorenew_poll_message_history_id_column_in_domain_table.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-08-18 20:43:24.136129
|
||||
2022-08-20 00:16:00.917251
|
||||
</text>
|
||||
<polygon fill="none" stroke="#888888" points="3748,-4 3748,-44 4013,-44 4013,-4 3748,-4" /> <!-- allocationtoken_a08ccbef -->
|
||||
<g id="node1" class="node">
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -123,3 +123,4 @@ V122__add_current_package_token_to_domain.sql
|
|||
V123__drop_unused_columns_in_billing_cancellation_table.sql
|
||||
V124__add_console_user.sql
|
||||
V125__create_package_promotion.sql
|
||||
V126__drop_autorenew_poll_message_history_id_column_in_domain_table.sql
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
-- 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.
|
||||
|
||||
ALTER TABLE "Domain" DROP COLUMN autorenew_poll_message_history_id;
|
|
@ -391,7 +391,6 @@ CREATE TABLE public."Domain" (
|
|||
autorenew_poll_message_id bigint,
|
||||
deletion_poll_message_id bigint,
|
||||
autorenew_end_time timestamp with time zone,
|
||||
autorenew_poll_message_history_id bigint,
|
||||
transfer_autorenew_poll_message_history_id bigint,
|
||||
transfer_history_entry_id bigint,
|
||||
transfer_repo_id text,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue