mirror of
https://github.com/google/nomulus.git
synced 2025-04-29 19:47:51 +02:00
Add allowedEppActions field to AllocationToken (#1957)
This commit is contained in:
parent
7146260a08
commit
04315ee940
5 changed files with 1398 additions and 1368 deletions
|
@ -261,11 +261,11 @@ td.section {
|
|||
</tr>
|
||||
<tr>
|
||||
<td class="property_name">generated on</td>
|
||||
<td class="property_value">2023-03-01 20:05:37.060279</td>
|
||||
<td class="property_value">2023-03-09 22:05:25.449957</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="property_name">last flyway file</td>
|
||||
<td id="lastFlywayFile" class="property_value">V138__drop_dns_refresh_request_time_column.sql</td>
|
||||
<td id="lastFlywayFile" class="property_value">V139__add_allowed_epp_actions_column.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">
|
||||
2023-03-01 20:05:37.060279
|
||||
2023-03-09 22:05:25.449957
|
||||
</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
|
@ -136,3 +136,4 @@ V135__null_gaia_id_user.sql
|
|||
V136__add_dns_refresh_request_table.sql
|
||||
V137__add_process_time_column.sql
|
||||
V138__drop_dns_refresh_request_time_column.sql
|
||||
V139__add_allowed_epp_actions_column.sql
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
-- Copyright 2023 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 "AllocationToken" ADD COLUMN allowed_epp_actions text[];
|
|
@ -53,7 +53,8 @@ CREATE TABLE public."AllocationToken" (
|
|||
token_type text,
|
||||
redemption_domain_history_id bigint,
|
||||
renewal_price_behavior text DEFAULT 'DEFAULT'::text NOT NULL,
|
||||
registration_behavior text DEFAULT 'DEFAULT'::text NOT NULL
|
||||
registration_behavior text DEFAULT 'DEFAULT'::text NOT NULL,
|
||||
allowed_epp_actions text[]
|
||||
);
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue