mirror of
https://github.com/google/nomulus.git
synced 2025-04-29 19:47:51 +02:00
Drop GAE user ID from RegistryPoc table (#1861)
This commit is contained in:
parent
61389a66bb
commit
dae5a0b6b6
5 changed files with 4025 additions and 4054 deletions
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -129,3 +129,4 @@ V128__fix_package_promotion_id.sql
|
||||||
V129__create_allocateId_sequence_alternative.sql
|
V129__create_allocateId_sequence_alternative.sql
|
||||||
V130__add_login_email_column_to_registrarpoc.sql
|
V130__add_login_email_column_to_registrarpoc.sql
|
||||||
V131__add_default_promo_tokens_to_registry.sql
|
V131__add_default_promo_tokens_to_registry.sql
|
||||||
|
V132__drop_gae_user_id_from_registrar_poc.sql
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
-- 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 "RegistrarPoc" DROP COLUMN gae_user_id;
|
||||||
|
|
|
@ -833,7 +833,6 @@ CREATE TABLE public."RegistrarPoc" (
|
||||||
email_address text NOT NULL,
|
email_address text NOT NULL,
|
||||||
allowed_to_set_registry_lock_password boolean NOT NULL,
|
allowed_to_set_registry_lock_password boolean NOT NULL,
|
||||||
fax_number text,
|
fax_number text,
|
||||||
gae_user_id text,
|
|
||||||
name text,
|
name text,
|
||||||
phone_number text,
|
phone_number text,
|
||||||
registry_lock_password_hash text,
|
registry_lock_password_hash text,
|
||||||
|
@ -2046,13 +2045,6 @@ CREATE INDEX registrar_iana_identifier_idx ON public."Registrar" USING btree (ia
|
||||||
CREATE INDEX registrar_name_idx ON public."Registrar" USING btree (registrar_name);
|
CREATE INDEX registrar_name_idx ON public."Registrar" USING btree (registrar_name);
|
||||||
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Name: registrarpoc_gae_user_id_idx; Type: INDEX; Schema: public; Owner: -
|
|
||||||
--
|
|
||||||
|
|
||||||
CREATE INDEX registrarpoc_gae_user_id_idx ON public."RegistrarPoc" USING btree (gae_user_id);
|
|
||||||
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Name: registrarpoc_login_email_idx; Type: INDEX; Schema: public; Owner: -
|
-- Name: registrarpoc_login_email_idx; Type: INDEX; Schema: public; Owner: -
|
||||||
--
|
--
|
||||||
|
|
Loading…
Add table
Reference in a new issue