From a6fbdb8b5cc714fb2711aa3b77fd4b14e593c91b Mon Sep 17 00:00:00 2001 From: olegphenomenon Date: Tue, 17 May 2022 13:01:37 +0300 Subject: [PATCH] fixed migration issue --- ...0504090512_remove_contact_code_cache_from_domain_contacts.rb | 2 +- db/structure.sql | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/db/migrate/20220504090512_remove_contact_code_cache_from_domain_contacts.rb b/db/migrate/20220504090512_remove_contact_code_cache_from_domain_contacts.rb index 98129b933..a95d8e193 100644 --- a/db/migrate/20220504090512_remove_contact_code_cache_from_domain_contacts.rb +++ b/db/migrate/20220504090512_remove_contact_code_cache_from_domain_contacts.rb @@ -1,5 +1,5 @@ class RemoveContactCodeCacheFromDomainContacts < ActiveRecord::Migration[6.1] def change - # remove_column :domain_contacts, :contact_code_cache + remove_column :domain_contacts, :contact_code_cache end end diff --git a/db/structure.sql b/db/structure.sql index 8280ecd9e..66152fe27 100644 --- a/db/structure.sql +++ b/db/structure.sql @@ -862,7 +862,6 @@ CREATE TABLE public.domain_contacts ( domain_id integer, created_at timestamp without time zone, updated_at timestamp without time zone, - contact_code_cache character varying, creator_str character varying, updator_str character varying, type character varying,