mirror of
https://github.com/internetee/registry.git
synced 2025-06-11 07:04:47 +02:00
parent
970cd7225c
commit
ed0af5033e
19 changed files with 63 additions and 626 deletions
|
@ -11,9 +11,6 @@ class Contact < ActiveRecord::Base
|
|||
has_many :legal_documents, as: :documentable
|
||||
has_many :registrant_domains, class_name: 'Domain', foreign_key: 'registrant_id'
|
||||
|
||||
# TODO: remove later
|
||||
has_many :depricated_statuses, class_name: 'DepricatedContactStatus', dependent: :destroy
|
||||
|
||||
has_paper_trail class_name: "ContactVersion", meta: { children: :children_log }
|
||||
|
||||
attr_accessor :legal_document_id
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
class DepricatedContactStatus < ActiveRecord::Base
|
||||
self.table_name = :contact_statuses
|
||||
self.sequence_name = :contact_statuses_id_seq
|
||||
belongs_to :contact
|
||||
end
|
|
@ -45,10 +45,6 @@ class Domain < ActiveRecord::Base
|
|||
accepts_nested_attributes_for :nameservers, allow_destroy: true,
|
||||
reject_if: proc { |attrs| attrs[:hostname].blank? }
|
||||
|
||||
has_many :domain_statuses, dependent: :destroy
|
||||
accepts_nested_attributes_for :domain_statuses, allow_destroy: true,
|
||||
reject_if: proc { |attrs| attrs[:value].blank? }
|
||||
|
||||
has_many :transfers, class_name: 'DomainTransfer', dependent: :destroy
|
||||
|
||||
has_many :dnskeys, dependent: :destroy
|
||||
|
@ -172,10 +168,6 @@ class Domain < ActiveRecord::Base
|
|||
attribute: 'contact_code_cache'
|
||||
}
|
||||
|
||||
validates :domain_statuses, uniqueness_multi: {
|
||||
attribute: 'value'
|
||||
}
|
||||
|
||||
validates :dnskeys, uniqueness_multi: {
|
||||
attribute: 'public_key'
|
||||
}
|
||||
|
@ -610,7 +602,6 @@ class Domain < ActiveRecord::Base
|
|||
log[:tech_contacts] = tech_contact_ids
|
||||
log[:nameservers] = nameserver_ids
|
||||
log[:dnskeys] = dnskey_ids
|
||||
log[:domain_statuses]= domain_status_ids
|
||||
log[:legal_documents]= [legal_document_id]
|
||||
log[:registrant] = [registrant_id]
|
||||
log
|
||||
|
|
|
@ -179,7 +179,6 @@ class Epp::Domain < Domain
|
|||
at[:nameservers_attributes] = nameservers_attrs(frame, action)
|
||||
at[:admin_domain_contacts_attributes] = admin_domain_contacts_attrs(frame, action)
|
||||
at[:tech_domain_contacts_attributes] = tech_domain_contacts_attrs(frame, action)
|
||||
# at[:domain_statuses_attributes] = domain_statuses_attrs(frame, action)
|
||||
|
||||
pw = frame.css('authInfo > pw').text
|
||||
at[:transfer_code] = pw if pw.present?
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
class ContactStatusVersion < PaperTrail::Version
|
||||
include VersionSession
|
||||
self.table_name = :log_contact_statuses
|
||||
self.sequence_name = :log_contact_statuses_id_seq
|
||||
end
|
|
@ -1,5 +0,0 @@
|
|||
class CountryVersion < PaperTrail::Version
|
||||
include VersionSession
|
||||
self.table_name = :log_countries
|
||||
self.sequence_name = :log_countries_id_seq
|
||||
end
|
|
@ -1,5 +0,0 @@
|
|||
class DomainStatusVersion < PaperTrail::Version
|
||||
include VersionSession
|
||||
self.table_name = :log_domain_statuses
|
||||
self.sequence_name = :log_domain_statuses_id_seq
|
||||
end
|
5
db/migrate/20180306180401_remove_people.rb
Normal file
5
db/migrate/20180306180401_remove_people.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemovePeople < ActiveRecord::Migration
|
||||
def change
|
||||
drop_table :people
|
||||
end
|
||||
end
|
5
db/migrate/20180306181538_remove_countries.rb
Normal file
5
db/migrate/20180306181538_remove_countries.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemoveCountries < ActiveRecord::Migration
|
||||
def change
|
||||
drop_table :countries
|
||||
end
|
||||
end
|
5
db/migrate/20180306181554_remove_log_countries.rb
Normal file
5
db/migrate/20180306181554_remove_log_countries.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemoveLogCountries < ActiveRecord::Migration
|
||||
def change
|
||||
drop_table :log_countries
|
||||
end
|
||||
end
|
5
db/migrate/20180306181911_remove_data_migrations.rb
Normal file
5
db/migrate/20180306181911_remove_data_migrations.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemoveDataMigrations < ActiveRecord::Migration
|
||||
def change
|
||||
drop_table :data_migrations
|
||||
end
|
||||
end
|
5
db/migrate/20180306182456_remove_cached_nameservers.rb
Normal file
5
db/migrate/20180306182456_remove_cached_nameservers.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemoveCachedNameservers < ActiveRecord::Migration
|
||||
def change
|
||||
drop_table :cached_nameservers
|
||||
end
|
||||
end
|
5
db/migrate/20180306182758_remove_contact_statuses.rb
Normal file
5
db/migrate/20180306182758_remove_contact_statuses.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemoveContactStatuses < ActiveRecord::Migration
|
||||
def change
|
||||
drop_table :contact_statuses
|
||||
end
|
||||
end
|
5
db/migrate/20180306182941_remove_log_contact_statuses.rb
Normal file
5
db/migrate/20180306182941_remove_log_contact_statuses.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemoveLogContactStatuses < ActiveRecord::Migration
|
||||
def change
|
||||
drop_table :log_contact_statuses
|
||||
end
|
||||
end
|
5
db/migrate/20180306183540_remove_domain_statuses.rb
Normal file
5
db/migrate/20180306183540_remove_domain_statuses.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemoveDomainStatuses < ActiveRecord::Migration
|
||||
def change
|
||||
drop_table :domain_statuses
|
||||
end
|
||||
end
|
5
db/migrate/20180306183549_remove_log_domain_statuses.rb
Normal file
5
db/migrate/20180306183549_remove_log_domain_statuses.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemoveLogDomainStatuses < ActiveRecord::Migration
|
||||
def change
|
||||
drop_table :log_domain_statuses
|
||||
end
|
||||
end
|
484
db/structure.sql
484
db/structure.sql
|
@ -554,17 +554,6 @@ CREATE SEQUENCE business_registry_caches_id_seq
|
|||
ALTER SEQUENCE business_registry_caches_id_seq OWNED BY business_registry_caches.id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: cached_nameservers; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE TABLE cached_nameservers (
|
||||
hostname character varying(255),
|
||||
ipv4 character varying(255),
|
||||
ipv6 character varying(255)
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: certificates; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -603,41 +592,6 @@ CREATE SEQUENCE certificates_id_seq
|
|||
ALTER SEQUENCE certificates_id_seq OWNED BY certificates.id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: contact_statuses; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE TABLE contact_statuses (
|
||||
id integer NOT NULL,
|
||||
value character varying,
|
||||
description character varying,
|
||||
contact_id integer,
|
||||
created_at timestamp without time zone,
|
||||
updated_at timestamp without time zone,
|
||||
creator_str character varying,
|
||||
updator_str character varying
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: contact_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE SEQUENCE contact_statuses_id_seq
|
||||
START WITH 1
|
||||
INCREMENT BY 1
|
||||
NO MINVALUE
|
||||
NO MAXVALUE
|
||||
CACHE 1;
|
||||
|
||||
|
||||
--
|
||||
-- Name: contact_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER SEQUENCE contact_statuses_id_seq OWNED BY contact_statuses.id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: contacts; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -694,49 +648,6 @@ CREATE SEQUENCE contacts_id_seq
|
|||
ALTER SEQUENCE contacts_id_seq OWNED BY contacts.id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: countries; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE TABLE countries (
|
||||
id integer NOT NULL,
|
||||
iso character varying,
|
||||
name character varying,
|
||||
created_at timestamp without time zone,
|
||||
updated_at timestamp without time zone,
|
||||
creator_str character varying,
|
||||
updator_str character varying
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: countries_id_seq; Type: SEQUENCE; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE SEQUENCE countries_id_seq
|
||||
START WITH 1
|
||||
INCREMENT BY 1
|
||||
NO MINVALUE
|
||||
NO MAXVALUE
|
||||
CACHE 1;
|
||||
|
||||
|
||||
--
|
||||
-- Name: countries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER SEQUENCE countries_id_seq OWNED BY countries.id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: data_migrations; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE TABLE data_migrations (
|
||||
version character varying NOT NULL
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: delegation_signers; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -914,40 +825,6 @@ CREATE SEQUENCE domain_contacts_id_seq
|
|||
ALTER SEQUENCE domain_contacts_id_seq OWNED BY domain_contacts.id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: domain_statuses; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE TABLE domain_statuses (
|
||||
id integer NOT NULL,
|
||||
domain_id integer,
|
||||
description character varying,
|
||||
value character varying,
|
||||
creator_str character varying,
|
||||
updator_str character varying,
|
||||
legacy_domain_id integer
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: domain_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE SEQUENCE domain_statuses_id_seq
|
||||
START WITH 1
|
||||
INCREMENT BY 1
|
||||
NO MINVALUE
|
||||
NO MAXVALUE
|
||||
CACHE 1;
|
||||
|
||||
|
||||
--
|
||||
-- Name: domain_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER SEQUENCE domain_statuses_id_seq OWNED BY domain_statuses.id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: domain_transfers; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -1490,44 +1367,6 @@ CREATE SEQUENCE log_certificates_id_seq
|
|||
ALTER SEQUENCE log_certificates_id_seq OWNED BY log_certificates.id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: log_contact_statuses; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE TABLE log_contact_statuses (
|
||||
id integer NOT NULL,
|
||||
item_type character varying NOT NULL,
|
||||
item_id integer NOT NULL,
|
||||
event character varying NOT NULL,
|
||||
whodunnit character varying,
|
||||
object json,
|
||||
object_changes json,
|
||||
created_at timestamp without time zone,
|
||||
session character varying,
|
||||
children json,
|
||||
uuid character varying
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: log_contact_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE SEQUENCE log_contact_statuses_id_seq
|
||||
START WITH 1
|
||||
INCREMENT BY 1
|
||||
NO MINVALUE
|
||||
NO MAXVALUE
|
||||
CACHE 1;
|
||||
|
||||
|
||||
--
|
||||
-- Name: log_contact_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER SEQUENCE log_contact_statuses_id_seq OWNED BY log_contact_statuses.id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: log_contacts; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -1567,44 +1406,6 @@ CREATE SEQUENCE log_contacts_id_seq
|
|||
ALTER SEQUENCE log_contacts_id_seq OWNED BY log_contacts.id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: log_countries; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE TABLE log_countries (
|
||||
id integer NOT NULL,
|
||||
item_type character varying NOT NULL,
|
||||
item_id integer NOT NULL,
|
||||
event character varying NOT NULL,
|
||||
whodunnit character varying,
|
||||
object json,
|
||||
object_changes json,
|
||||
created_at timestamp without time zone,
|
||||
session character varying,
|
||||
children json,
|
||||
uuid character varying
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: log_countries_id_seq; Type: SEQUENCE; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE SEQUENCE log_countries_id_seq
|
||||
START WITH 1
|
||||
INCREMENT BY 1
|
||||
NO MINVALUE
|
||||
NO MAXVALUE
|
||||
CACHE 1;
|
||||
|
||||
|
||||
--
|
||||
-- Name: log_countries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER SEQUENCE log_countries_id_seq OWNED BY log_countries.id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: log_dnskeys; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -1681,44 +1482,6 @@ CREATE SEQUENCE log_domain_contacts_id_seq
|
|||
ALTER SEQUENCE log_domain_contacts_id_seq OWNED BY log_domain_contacts.id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: log_domain_statuses; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE TABLE log_domain_statuses (
|
||||
id integer NOT NULL,
|
||||
item_type character varying NOT NULL,
|
||||
item_id integer NOT NULL,
|
||||
event character varying NOT NULL,
|
||||
whodunnit character varying,
|
||||
object json,
|
||||
object_changes json,
|
||||
created_at timestamp without time zone,
|
||||
session character varying,
|
||||
children json,
|
||||
uuid character varying
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: log_domain_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE SEQUENCE log_domain_statuses_id_seq
|
||||
START WITH 1
|
||||
INCREMENT BY 1
|
||||
NO MINVALUE
|
||||
NO MAXVALUE
|
||||
CACHE 1;
|
||||
|
||||
|
||||
--
|
||||
-- Name: log_domain_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER SEQUENCE log_domain_statuses_id_seq OWNED BY log_domain_statuses.id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: log_domains; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -2252,46 +2015,6 @@ CREATE SEQUENCE nameservers_id_seq
|
|||
ALTER SEQUENCE nameservers_id_seq OWNED BY nameservers.id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: people; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE TABLE people (
|
||||
id integer NOT NULL,
|
||||
email character varying DEFAULT ''::character varying NOT NULL,
|
||||
encrypted_password character varying DEFAULT ''::character varying NOT NULL,
|
||||
reset_password_token character varying,
|
||||
reset_password_sent_at timestamp without time zone,
|
||||
remember_created_at timestamp without time zone,
|
||||
sign_in_count integer DEFAULT 0 NOT NULL,
|
||||
current_sign_in_at timestamp without time zone,
|
||||
last_sign_in_at timestamp without time zone,
|
||||
current_sign_in_ip inet,
|
||||
last_sign_in_ip inet,
|
||||
created_at timestamp without time zone,
|
||||
updated_at timestamp without time zone
|
||||
);
|
||||
|
||||
|
||||
--
|
||||
-- Name: people_id_seq; Type: SEQUENCE; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE SEQUENCE people_id_seq
|
||||
START WITH 1
|
||||
INCREMENT BY 1
|
||||
NO MINVALUE
|
||||
NO MAXVALUE
|
||||
CACHE 1;
|
||||
|
||||
|
||||
--
|
||||
-- Name: people_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER SEQUENCE people_id_seq OWNED BY people.id;
|
||||
|
||||
|
||||
--
|
||||
-- Name: prices; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -2792,13 +2515,6 @@ ALTER TABLE ONLY business_registry_caches ALTER COLUMN id SET DEFAULT nextval('b
|
|||
ALTER TABLE ONLY certificates ALTER COLUMN id SET DEFAULT nextval('certificates_id_seq'::regclass);
|
||||
|
||||
|
||||
--
|
||||
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY contact_statuses ALTER COLUMN id SET DEFAULT nextval('contact_statuses_id_seq'::regclass);
|
||||
|
||||
|
||||
--
|
||||
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
||||
--
|
||||
|
@ -2806,13 +2522,6 @@ ALTER TABLE ONLY contact_statuses ALTER COLUMN id SET DEFAULT nextval('contact_s
|
|||
ALTER TABLE ONLY contacts ALTER COLUMN id SET DEFAULT nextval('contacts_id_seq'::regclass);
|
||||
|
||||
|
||||
--
|
||||
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY countries ALTER COLUMN id SET DEFAULT nextval('countries_id_seq'::regclass);
|
||||
|
||||
|
||||
--
|
||||
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
||||
--
|
||||
|
@ -2848,13 +2557,6 @@ ALTER TABLE ONLY dnskeys ALTER COLUMN id SET DEFAULT nextval('dnskeys_id_seq'::r
|
|||
ALTER TABLE ONLY domain_contacts ALTER COLUMN id SET DEFAULT nextval('domain_contacts_id_seq'::regclass);
|
||||
|
||||
|
||||
--
|
||||
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY domain_statuses ALTER COLUMN id SET DEFAULT nextval('domain_statuses_id_seq'::regclass);
|
||||
|
||||
|
||||
--
|
||||
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
||||
--
|
||||
|
@ -2946,13 +2648,6 @@ ALTER TABLE ONLY log_blocked_domains ALTER COLUMN id SET DEFAULT nextval('log_bl
|
|||
ALTER TABLE ONLY log_certificates ALTER COLUMN id SET DEFAULT nextval('log_certificates_id_seq'::regclass);
|
||||
|
||||
|
||||
--
|
||||
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY log_contact_statuses ALTER COLUMN id SET DEFAULT nextval('log_contact_statuses_id_seq'::regclass);
|
||||
|
||||
|
||||
--
|
||||
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
||||
--
|
||||
|
@ -2960,13 +2655,6 @@ ALTER TABLE ONLY log_contact_statuses ALTER COLUMN id SET DEFAULT nextval('log_c
|
|||
ALTER TABLE ONLY log_contacts ALTER COLUMN id SET DEFAULT nextval('log_contacts_id_seq'::regclass);
|
||||
|
||||
|
||||
--
|
||||
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY log_countries ALTER COLUMN id SET DEFAULT nextval('log_countries_id_seq'::regclass);
|
||||
|
||||
|
||||
--
|
||||
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
||||
--
|
||||
|
@ -2981,13 +2669,6 @@ ALTER TABLE ONLY log_dnskeys ALTER COLUMN id SET DEFAULT nextval('log_dnskeys_id
|
|||
ALTER TABLE ONLY log_domain_contacts ALTER COLUMN id SET DEFAULT nextval('log_domain_contacts_id_seq'::regclass);
|
||||
|
||||
|
||||
--
|
||||
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY log_domain_statuses ALTER COLUMN id SET DEFAULT nextval('log_domain_statuses_id_seq'::regclass);
|
||||
|
||||
|
||||
--
|
||||
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
||||
--
|
||||
|
@ -3086,13 +2767,6 @@ ALTER TABLE ONLY messages ALTER COLUMN id SET DEFAULT nextval('messages_id_seq':
|
|||
ALTER TABLE ONLY nameservers ALTER COLUMN id SET DEFAULT nextval('nameservers_id_seq'::regclass);
|
||||
|
||||
|
||||
--
|
||||
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY people ALTER COLUMN id SET DEFAULT nextval('people_id_seq'::regclass);
|
||||
|
||||
|
||||
--
|
||||
-- Name: id; Type: DEFAULT; Schema: public; Owner: -
|
||||
--
|
||||
|
@ -3234,14 +2908,6 @@ ALTER TABLE ONLY certificates
|
|||
ADD CONSTRAINT certificates_pkey PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: contact_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY contact_statuses
|
||||
ADD CONSTRAINT contact_statuses_pkey PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: contacts_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -3250,14 +2916,6 @@ ALTER TABLE ONLY contacts
|
|||
ADD CONSTRAINT contacts_pkey PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: countries_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY countries
|
||||
ADD CONSTRAINT countries_pkey PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: delegation_signers_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -3298,14 +2956,6 @@ ALTER TABLE ONLY domain_contacts
|
|||
ADD CONSTRAINT domain_contacts_pkey PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: domain_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY domain_statuses
|
||||
ADD CONSTRAINT domain_statuses_pkey PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: domain_transfers_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -3410,14 +3060,6 @@ ALTER TABLE ONLY log_certificates
|
|||
ADD CONSTRAINT log_certificates_pkey PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: log_contact_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY log_contact_statuses
|
||||
ADD CONSTRAINT log_contact_statuses_pkey PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: log_contacts_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -3426,14 +3068,6 @@ ALTER TABLE ONLY log_contacts
|
|||
ADD CONSTRAINT log_contacts_pkey PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: log_countries_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY log_countries
|
||||
ADD CONSTRAINT log_countries_pkey PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: log_dnskeys_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -3450,14 +3084,6 @@ ALTER TABLE ONLY log_domain_contacts
|
|||
ADD CONSTRAINT log_domain_contacts_pkey PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: log_domain_statuses_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY log_domain_statuses
|
||||
ADD CONSTRAINT log_domain_statuses_pkey PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: log_domains_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -3570,14 +3196,6 @@ ALTER TABLE ONLY nameservers
|
|||
ADD CONSTRAINT nameservers_pkey PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: people_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
ALTER TABLE ONLY people
|
||||
ADD CONSTRAINT people_pkey PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: prices_pkey; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -3732,13 +3350,6 @@ CREATE INDEX index_blocked_domains_on_name ON blocked_domains USING btree (name)
|
|||
CREATE INDEX index_business_registry_caches_on_ident ON business_registry_caches USING btree (ident);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_cached_nameservers_on_hostname_and_ipv4_and_ipv6; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE UNIQUE INDEX index_cached_nameservers_on_hostname_and_ipv4_and_ipv6 ON cached_nameservers USING btree (hostname, ipv4, ipv6);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_certificates_on_api_user_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -3746,13 +3357,6 @@ CREATE UNIQUE INDEX index_cached_nameservers_on_hostname_and_ipv4_and_ipv6 ON ca
|
|||
CREATE INDEX index_certificates_on_api_user_id ON certificates USING btree (api_user_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_contact_statuses_on_contact_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE INDEX index_contact_statuses_on_contact_id ON contact_statuses USING btree (contact_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_contacts_on_code; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -3823,13 +3427,6 @@ CREATE INDEX index_domain_contacts_on_contact_id ON domain_contacts USING btree
|
|||
CREATE INDEX index_domain_contacts_on_domain_id ON domain_contacts USING btree (domain_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_domain_statuses_on_domain_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE INDEX index_domain_statuses_on_domain_id ON domain_statuses USING btree (domain_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_domain_transfers_on_domain_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -4040,20 +3637,6 @@ CREATE INDEX index_log_certificates_on_item_type_and_item_id ON log_certificates
|
|||
CREATE INDEX index_log_certificates_on_whodunnit ON log_certificates USING btree (whodunnit);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_log_contact_statuses_on_item_type_and_item_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE INDEX index_log_contact_statuses_on_item_type_and_item_id ON log_contact_statuses USING btree (item_type, item_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_log_contact_statuses_on_whodunnit; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE INDEX index_log_contact_statuses_on_whodunnit ON log_contact_statuses USING btree (whodunnit);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_log_contacts_on_item_type_and_item_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -4068,20 +3651,6 @@ CREATE INDEX index_log_contacts_on_item_type_and_item_id ON log_contacts USING b
|
|||
CREATE INDEX index_log_contacts_on_whodunnit ON log_contacts USING btree (whodunnit);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_log_countries_on_item_type_and_item_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE INDEX index_log_countries_on_item_type_and_item_id ON log_countries USING btree (item_type, item_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_log_countries_on_whodunnit; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE INDEX index_log_countries_on_whodunnit ON log_countries USING btree (whodunnit);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_log_dnskeys_on_item_type_and_item_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -4110,20 +3679,6 @@ CREATE INDEX index_log_domain_contacts_on_item_type_and_item_id ON log_domain_co
|
|||
CREATE INDEX index_log_domain_contacts_on_whodunnit ON log_domain_contacts USING btree (whodunnit);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_log_domain_statuses_on_item_type_and_item_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE INDEX index_log_domain_statuses_on_item_type_and_item_id ON log_domain_statuses USING btree (item_type, item_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_log_domain_statuses_on_whodunnit; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE INDEX index_log_domain_statuses_on_whodunnit ON log_domain_statuses USING btree (whodunnit);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_log_domains_on_item_type_and_item_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -4278,20 +3833,6 @@ CREATE INDEX index_messages_on_registrar_id ON messages USING btree (registrar_i
|
|||
CREATE INDEX index_nameservers_on_domain_id ON nameservers USING btree (domain_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_people_on_email; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE UNIQUE INDEX index_people_on_email ON people USING btree (email);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_people_on_reset_password_token; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE UNIQUE INDEX index_people_on_reset_password_token ON people USING btree (reset_password_token);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_prices_on_zone_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -4390,13 +3931,6 @@ CREATE INDEX log_domains_object_legacy_id ON log_contacts USING btree ((((object
|
|||
CREATE INDEX log_nameservers_object_legacy_id ON log_contacts USING btree ((((object ->> 'legacy_domain_id'::text))::integer));
|
||||
|
||||
|
||||
--
|
||||
-- Name: unique_data_migrations; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
||||
CREATE UNIQUE INDEX unique_data_migrations ON data_migrations USING btree (version);
|
||||
|
||||
|
||||
--
|
||||
-- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: -; Tablespace:
|
||||
--
|
||||
|
@ -5126,3 +4660,21 @@ INSERT INTO schema_migrations (version) VALUES ('20180214213743');
|
|||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20180218004148');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20180306180401');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20180306181538');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20180306181554');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20180306181911');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20180306182456');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20180306182758');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20180306182941');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20180306183540');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20180306183549');
|
||||
|
||||
|
|
|
@ -83,28 +83,6 @@
|
|||
<ellipse fill="none" stroke="#c5d409" cx="1215.62" cy="-123.741" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#c5d409" stroke="#c5d409" points="1481.6,-23.3416 1491.87,-27.1865 1486.59,-23.0187 1491.58,-22.6959 1491.58,-22.6959 1491.58,-22.6959 1486.59,-23.0187 1491.29,-18.2053 1481.6,-23.3416 1481.6,-23.3416"/>
|
||||
</g>
|
||||
<!-- DomainStatusVersion -->
|
||||
<g id="node7" class="node"><title>DomainStatusVersion</title>
|
||||
<ellipse fill="none" stroke="black" cx="1924.99" cy="-145" rx="89.0842" ry="18"/>
|
||||
<text text-anchor="middle" x="1924.99" y="-141.3" font-family="Times,serif" font-size="14.00">DomainStatusVersion</text>
|
||||
</g>
|
||||
<!-- DomainStatusVersion->VersionAssociation -->
|
||||
<g id="edge5" class="edge"><title>DomainStatusVersion->VersionAssociation</title>
|
||||
<path fill="none" stroke="#737845" d="M1899.78,-122.13C1880.11,-106.198 1851.45,-85.3285 1822.99,-73 1767.83,-49.1018 1701.21,-35.4483 1650.04,-27.8511"/>
|
||||
<ellipse fill="none" stroke="#737845" cx="1903" cy="-124.782" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#737845" stroke="#737845" points="1649.92,-27.8338 1640.66,-21.957 1644.97,-27.1225 1640.02,-26.4112 1640.02,-26.4112 1640.02,-26.4112 1644.97,-27.1225 1639.38,-30.8654 1649.92,-27.8338 1649.92,-27.8338"/>
|
||||
</g>
|
||||
<!-- ContactStatusVersion -->
|
||||
<g id="node8" class="node"><title>ContactStatusVersion</title>
|
||||
<ellipse fill="none" stroke="black" cx="2358.99" cy="-91" rx="87.1846" ry="18"/>
|
||||
<text text-anchor="middle" x="2358.99" y="-87.3" font-family="Times,serif" font-size="14.00">ContactStatusVersion</text>
|
||||
</g>
|
||||
<!-- ContactStatusVersion->VersionAssociation -->
|
||||
<g id="edge6" class="edge"><title>ContactStatusVersion->VersionAssociation</title>
|
||||
<path fill="none" stroke="#bd1fad" d="M2315.43,-71.3361C2297.91,-64.6623 2277.31,-57.8466 2257.99,-54 2146,-31.6962 1818.56,-23.2001 1658.78,-20.3167"/>
|
||||
<ellipse fill="none" stroke="#bd1fad" cx="2319.53" cy="-72.9297" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#bd1fad" stroke="#bd1fad" points="1658.5,-20.3119 1648.58,-15.6355 1653.5,-20.2234 1648.5,-20.1348 1648.5,-20.1348 1648.5,-20.1348 1653.5,-20.2234 1648.42,-24.6341 1658.5,-20.3119 1658.5,-20.3119"/>
|
||||
</g>
|
||||
<!-- UserVersion->VersionAssociation -->
|
||||
<g id="edge7" class="edge"><title>UserVersion->VersionAssociation</title>
|
||||
<path fill="none" stroke="#81300d" d="M877.642,-295.337C892.405,-290.14 907.215,-282.43 917.994,-271 987.069,-197.756 904.062,-116.497 982.994,-54 1020.85,-24.0245 1323.82,-19.2493 1478.62,-18.7906"/>
|
||||
|
@ -238,17 +216,6 @@
|
|||
<ellipse fill="none" stroke="#cbb588" cx="2689.49" cy="-190.759" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#cbb588" stroke="#cbb588" points="1654.04,-25.0657 1644.39,-19.8555 1649.06,-24.7047 1644.07,-24.3437 1644.07,-24.3437 1644.07,-24.3437 1649.06,-24.7047 1643.75,-28.832 1654.04,-25.0657 1654.04,-25.0657"/>
|
||||
</g>
|
||||
<!-- CountryVersion -->
|
||||
<g id="node24" class="node"><title>CountryVersion</title>
|
||||
<ellipse fill="none" stroke="black" cx="3413.99" cy="-91" rx="67.6881" ry="18"/>
|
||||
<text text-anchor="middle" x="3413.99" y="-87.3" font-family="Times,serif" font-size="14.00">CountryVersion</text>
|
||||
</g>
|
||||
<!-- CountryVersion->VersionAssociation -->
|
||||
<g id="edge22" class="edge"><title>CountryVersion->VersionAssociation</title>
|
||||
<path fill="none" stroke="#b69a48" d="M3358.71,-76.3835C3351.77,-75.0437 3344.74,-73.8632 3337.99,-73 3094.5,-41.8509 3031.35,-61.7507 2785.99,-54 2363.93,-40.6673 1859.47,-26.8291 1658.24,-21.3938"/>
|
||||
<ellipse fill="none" stroke="#b69a48" cx="3362.88" cy="-77.2265" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#b69a48" stroke="#b69a48" points="1658.02,-21.3879 1648.14,-16.6196 1653.02,-21.2529 1648.02,-21.1179 1648.02,-21.1179 1648.02,-21.1179 1653.02,-21.2529 1647.9,-25.6163 1658.02,-21.3879 1658.02,-21.3879"/>
|
||||
</g>
|
||||
<!-- BankTransactionVersion -->
|
||||
<g id="node26" class="node"><title>BankTransactionVersion</title>
|
||||
<ellipse fill="none" stroke="black" cx="590.994" cy="-145" rx="98.5829" ry="18"/>
|
||||
|
@ -1131,13 +1098,6 @@
|
|||
<polygon fill="#21f8a2" stroke="#21f8a2" points="795.532,-330.958 805.846,-327.236 799.124,-327.481 802.717,-324.003 802.717,-324.003 802.717,-324.003 799.124,-327.481 799.587,-320.77 795.532,-330.958 795.532,-330.958"/>
|
||||
<text text-anchor="middle" x="807.994" y="-357.3" font-family="Times,serif" font-size="14.00">versions</text>
|
||||
</g>
|
||||
<!-- ContactStatus->ContactStatusVersion -->
|
||||
<g id="edge73" class="edge"><title>ContactStatus->ContactStatusVersion</title>
|
||||
<path fill="none" stroke="#32889b" d="M2845.18,-184.569C2839.41,-183.259 2833.59,-182.035 2827.99,-181 2762.84,-168.941 2745.31,-174.168 2679.99,-163 2589.61,-147.545 2486.25,-123.526 2421.79,-107.778"/>
|
||||
<ellipse fill="none" stroke="#32889b" cx="2849.11" cy="-185.487" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#32889b" stroke="#32889b" points="2421.5,-107.707 2412.86,-100.954 2416.65,-106.516 2411.79,-105.325 2411.79,-105.325 2411.79,-105.325 2416.65,-106.516 2410.72,-109.695 2421.5,-107.707 2421.5,-107.707"/>
|
||||
<text text-anchor="middle" x="2702.99" y="-141.3" font-family="Times,serif" font-size="14.00">versions</text>
|
||||
</g>
|
||||
<!-- RegistrantVerification -->
|
||||
<g id="node48" class="node"><title>RegistrantVerification</title>
|
||||
<ellipse fill="none" stroke="black" cx="4032.99" cy="-523" rx="89.0842" ry="18"/>
|
||||
|
@ -1274,13 +1234,6 @@
|
|||
<polygon fill="#77d44a" stroke="#77d44a" points="1705.57,-117.865 1714.17,-111.061 1707.88,-113.427 1710.18,-108.988 1710.18,-108.988 1710.18,-108.988 1707.88,-113.427 1706.19,-106.916 1705.57,-117.865 1705.57,-117.865"/>
|
||||
<text text-anchor="middle" x="1721.99" y="-141.3" font-family="Times,serif" font-size="14.00">versions</text>
|
||||
</g>
|
||||
<!-- DomainStatus->DomainStatusVersion -->
|
||||
<g id="edge139" class="edge"><title>DomainStatus->DomainStatusVersion</title>
|
||||
<path fill="none" stroke="#83d992" d="M2116.06,-289.993C2103.04,-284.692 2089.13,-278.263 2076.99,-271 2027.96,-241.645 1978.11,-197.284 1949.44,-170.059"/>
|
||||
<ellipse fill="none" stroke="#83d992" cx="2119.88" cy="-291.508" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#83d992" stroke="#83d992" points="1949.16,-169.784 1945.05,-159.614 1945.55,-166.323 1941.94,-162.862 1941.94,-162.862 1941.94,-162.862 1945.55,-166.323 1938.82,-166.11 1949.16,-169.784 1949.16,-169.784"/>
|
||||
<text text-anchor="middle" x="2099.99" y="-249.3" font-family="Times,serif" font-size="14.00">versions</text>
|
||||
</g>
|
||||
<!-- Registrant -->
|
||||
<g id="node64" class="node"><title>Registrant</title>
|
||||
<ellipse fill="none" stroke="black" cx="3805.99" cy="-523" rx="46.5926" ry="18"/>
|
||||
|
|
Before Width: | Height: | Size: 126 KiB After Width: | Height: | Size: 122 KiB |
|
@ -170,50 +170,6 @@
|
|||
<ellipse fill="none" stroke="#ca4159" cx="1303.92" cy="-269.31" rx="4" ry="4"/>
|
||||
<polygon fill="#ca4159" stroke="#ca4159" points="1668.38,-21.9528 1678.55,-26.0458 1673.37,-21.7511 1678.37,-21.5494 1678.37,-21.5494 1678.37,-21.5494 1673.37,-21.7511 1678.19,-17.0531 1668.38,-21.9528 1668.38,-21.9528"/>
|
||||
</g>
|
||||
<!-- DomainStatusVersion -->
|
||||
<g id="node7" class="node"><title>DomainStatusVersion</title>
|
||||
<path fill="none" stroke="black" d="M2133.5,-273.5C2133.5,-273.5 2246.5,-273.5 2246.5,-273.5 2252.5,-273.5 2258.5,-279.5 2258.5,-285.5 2258.5,-285.5 2258.5,-442.5 2258.5,-442.5 2258.5,-448.5 2252.5,-454.5 2246.5,-454.5 2246.5,-454.5 2133.5,-454.5 2133.5,-454.5 2127.5,-454.5 2121.5,-448.5 2121.5,-442.5 2121.5,-442.5 2121.5,-285.5 2121.5,-285.5 2121.5,-279.5 2127.5,-273.5 2133.5,-273.5"/>
|
||||
<text text-anchor="middle" x="2190" y="-439.3" font-family="Times,serif" font-size="14.00">DomainStatusVersion</text>
|
||||
<polyline fill="none" stroke="black" points="2121.5,-431.5 2258.5,-431.5 "/>
|
||||
<text text-anchor="start" x="2129.5" y="-416.3" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="2129.5" y="-401.3" font-family="Times,serif" font-size="14.00">item_type :string</text>
|
||||
<text text-anchor="start" x="2129.5" y="-386.3" font-family="Times,serif" font-size="14.00">item_id :integer</text>
|
||||
<text text-anchor="start" x="2129.5" y="-371.3" font-family="Times,serif" font-size="14.00">event :string</text>
|
||||
<text text-anchor="start" x="2129.5" y="-356.3" font-family="Times,serif" font-size="14.00">whodunnit :string</text>
|
||||
<text text-anchor="start" x="2129.5" y="-341.3" font-family="Times,serif" font-size="14.00">object :json</text>
|
||||
<text text-anchor="start" x="2129.5" y="-326.3" font-family="Times,serif" font-size="14.00">object_changes :json</text>
|
||||
<text text-anchor="start" x="2129.5" y="-311.3" font-family="Times,serif" font-size="14.00">created_at :datetime</text>
|
||||
<text text-anchor="start" x="2129.5" y="-296.3" font-family="Times,serif" font-size="14.00">session :string</text>
|
||||
<text text-anchor="start" x="2129.5" y="-281.3" font-family="Times,serif" font-size="14.00">children :json</text>
|
||||
</g>
|
||||
<!-- DomainStatusVersion->VersionAssociation -->
|
||||
<g id="edge5" class="edge"><title>DomainStatusVersion->VersionAssociation</title>
|
||||
<path fill="none" stroke="#32384d" d="M2166.85,-265.638C2146.39,-201.12 2109.89,-119.994 2048,-73 2016.1,-48.7746 1915.11,-34.0274 1841.03,-26.1991"/>
|
||||
<ellipse fill="none" stroke="#32384d" cx="2168.08" cy="-269.6" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#32384d" stroke="#32384d" points="1840.71,-26.1664 1831.22,-20.6639 1835.74,-25.6532 1830.76,-25.1401 1830.76,-25.1401 1830.76,-25.1401 1835.74,-25.6532 1830.3,-29.6164 1840.71,-26.1664 1840.71,-26.1664"/>
|
||||
</g>
|
||||
<!-- ContactStatusVersion -->
|
||||
<g id="node8" class="node"><title>ContactStatusVersion</title>
|
||||
<path fill="none" stroke="black" d="M2518,-73.5C2518,-73.5 2628,-73.5 2628,-73.5 2634,-73.5 2640,-79.5 2640,-85.5 2640,-85.5 2640,-242.5 2640,-242.5 2640,-248.5 2634,-254.5 2628,-254.5 2628,-254.5 2518,-254.5 2518,-254.5 2512,-254.5 2506,-248.5 2506,-242.5 2506,-242.5 2506,-85.5 2506,-85.5 2506,-79.5 2512,-73.5 2518,-73.5"/>
|
||||
<text text-anchor="middle" x="2573" y="-239.3" font-family="Times,serif" font-size="14.00">ContactStatusVersion</text>
|
||||
<polyline fill="none" stroke="black" points="2506,-231.5 2640,-231.5 "/>
|
||||
<text text-anchor="start" x="2514" y="-216.3" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="2514" y="-201.3" font-family="Times,serif" font-size="14.00">item_type :string</text>
|
||||
<text text-anchor="start" x="2514" y="-186.3" font-family="Times,serif" font-size="14.00">item_id :integer</text>
|
||||
<text text-anchor="start" x="2514" y="-171.3" font-family="Times,serif" font-size="14.00">event :string</text>
|
||||
<text text-anchor="start" x="2514" y="-156.3" font-family="Times,serif" font-size="14.00">whodunnit :string</text>
|
||||
<text text-anchor="start" x="2514" y="-141.3" font-family="Times,serif" font-size="14.00">object :json</text>
|
||||
<text text-anchor="start" x="2514" y="-126.3" font-family="Times,serif" font-size="14.00">object_changes :json</text>
|
||||
<text text-anchor="start" x="2514" y="-111.3" font-family="Times,serif" font-size="14.00">created_at :datetime</text>
|
||||
<text text-anchor="start" x="2514" y="-96.3" font-family="Times,serif" font-size="14.00">session :string</text>
|
||||
<text text-anchor="start" x="2514" y="-81.3" font-family="Times,serif" font-size="14.00">children :json</text>
|
||||
</g>
|
||||
<!-- ContactStatusVersion->VersionAssociation -->
|
||||
<g id="edge6" class="edge"><title>ContactStatusVersion->VersionAssociation</title>
|
||||
<path fill="none" stroke="#f74e61" d="M2511.93,-67.8212C2505.75,-62.4959 2499.1,-57.7839 2492,-54 2436.47,-24.4057 2031.05,-19.6332 1847.21,-19.0048"/>
|
||||
<ellipse fill="none" stroke="#f74e61" cx="2515.02" cy="-70.6401" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#f74e61" stroke="#f74e61" points="1847.02,-19.0044 1837.04,-14.4735 1842.02,-18.9889 1837.02,-18.9735 1837.02,-18.9735 1837.02,-18.9735 1842.02,-18.9889 1837.01,-23.4735 1847.02,-19.0044 1847.02,-19.0044"/>
|
||||
</g>
|
||||
<!-- UserVersion->VersionAssociation -->
|
||||
<g id="edge7" class="edge"><title>UserVersion->VersionAssociation</title>
|
||||
<path fill="none" stroke="#625c68" d="M936.508,-1172.61C943.887,-1101.26 953.553,-1002.22 960,-915 963.531,-867.232 971.034,-87.7726 1005,-54 1028.13,-30.9991 1472.68,-22.5857 1667.18,-19.997"/>
|
||||
|
@ -468,28 +424,6 @@
|
|||
<ellipse fill="none" stroke="#19ba78" cx="2999.97" cy="-500.986" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#19ba78" stroke="#19ba78" points="1846.61,-19.8234 1836.68,-15.1884 1841.62,-19.7557 1836.62,-19.688 1836.62,-19.688 1836.62,-19.688 1841.62,-19.7557 1836.55,-24.1876 1846.61,-19.8234 1846.61,-19.8234"/>
|
||||
</g>
|
||||
<!-- CountryVersion -->
|
||||
<g id="node24" class="node"><title>CountryVersion</title>
|
||||
<path fill="none" stroke="black" d="M3454,-73.5C3454,-73.5 3560,-73.5 3560,-73.5 3566,-73.5 3572,-79.5 3572,-85.5 3572,-85.5 3572,-242.5 3572,-242.5 3572,-248.5 3566,-254.5 3560,-254.5 3560,-254.5 3454,-254.5 3454,-254.5 3448,-254.5 3442,-248.5 3442,-242.5 3442,-242.5 3442,-85.5 3442,-85.5 3442,-79.5 3448,-73.5 3454,-73.5"/>
|
||||
<text text-anchor="middle" x="3507" y="-239.3" font-family="Times,serif" font-size="14.00">CountryVersion</text>
|
||||
<polyline fill="none" stroke="black" points="3442,-231.5 3572,-231.5 "/>
|
||||
<text text-anchor="start" x="3450" y="-216.3" font-family="Times,serif" font-size="14.00">id :integer</text>
|
||||
<text text-anchor="start" x="3450" y="-201.3" font-family="Times,serif" font-size="14.00">item_type :string</text>
|
||||
<text text-anchor="start" x="3450" y="-186.3" font-family="Times,serif" font-size="14.00">item_id :integer</text>
|
||||
<text text-anchor="start" x="3450" y="-171.3" font-family="Times,serif" font-size="14.00">event :string</text>
|
||||
<text text-anchor="start" x="3450" y="-156.3" font-family="Times,serif" font-size="14.00">whodunnit :string</text>
|
||||
<text text-anchor="start" x="3450" y="-141.3" font-family="Times,serif" font-size="14.00">object :json</text>
|
||||
<text text-anchor="start" x="3450" y="-126.3" font-family="Times,serif" font-size="14.00">object_changes :json</text>
|
||||
<text text-anchor="start" x="3450" y="-111.3" font-family="Times,serif" font-size="14.00">created_at :datetime</text>
|
||||
<text text-anchor="start" x="3450" y="-96.3" font-family="Times,serif" font-size="14.00">session :string</text>
|
||||
<text text-anchor="start" x="3450" y="-81.3" font-family="Times,serif" font-size="14.00">children :json</text>
|
||||
</g>
|
||||
<!-- CountryVersion->VersionAssociation -->
|
||||
<g id="edge22" class="edge"><title>CountryVersion->VersionAssociation</title>
|
||||
<path fill="none" stroke="#766dfb" d="M3435.01,-74.0295C3434.34,-73.6773 3433.67,-73.334 3433,-73 3230.95,27.1176 3151.36,-61.5964 2926,-54 2523.04,-40.4174 2041.86,-26.8478 1846.26,-21.4432"/>
|
||||
<ellipse fill="none" stroke="#766dfb" cx="3438.54" cy="-76.1046" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#766dfb" stroke="#766dfb" points="1846.03,-21.437 1836.16,-16.6626 1841.03,-21.299 1836.03,-21.1609 1836.03,-21.1609 1836.03,-21.1609 1841.03,-21.299 1835.91,-25.6592 1846.03,-21.437 1846.03,-21.437"/>
|
||||
</g>
|
||||
<!-- BankTransactionVersion -->
|
||||
<g id="node26" class="node"><title>BankTransactionVersion</title>
|
||||
<path fill="none" stroke="black" d="M614,-273.5C614,-273.5 742,-273.5 742,-273.5 748,-273.5 754,-279.5 754,-285.5 754,-285.5 754,-442.5 754,-442.5 754,-448.5 748,-454.5 742,-454.5 742,-454.5 614,-454.5 614,-454.5 608,-454.5 602,-448.5 602,-442.5 602,-442.5 602,-285.5 602,-285.5 602,-279.5 608,-273.5 614,-273.5"/>
|
||||
|
@ -1826,13 +1760,6 @@
|
|||
<polygon fill="#1a881f" stroke="#1a881f" points="919.662,-1372.29 924.748,-1362.58 919.959,-1367.3 920.256,-1362.31 920.256,-1362.31 920.256,-1362.31 919.959,-1367.3 915.764,-1362.04 919.662,-1372.29 919.662,-1372.29"/>
|
||||
<text text-anchor="middle" x="931" y="-1707.8" font-family="Times,serif" font-size="14.00">versions</text>
|
||||
</g>
|
||||
<!-- ContactStatus->ContactStatusVersion -->
|
||||
<g id="edge73" class="edge"><title>ContactStatus->ContactStatusVersion</title>
|
||||
<path fill="none" stroke="#381ba0" d="M3180.66,-511.338C3170.31,-496.263 3157.51,-482.349 3142,-473 3094.87,-444.588 2946.14,-475.346 2895,-455 2794.71,-415.096 2705.7,-328.835 2646.82,-260.709"/>
|
||||
<ellipse fill="none" stroke="#381ba0" cx="3183.06" cy="-514.989" rx="4.00002" ry="4.00002"/>
|
||||
<polygon fill="#381ba0" stroke="#381ba0" points="2646.65,-260.513 2643.57,-249.99 2643.4,-256.715 2640.15,-252.917 2640.15,-252.917 2640.15,-252.917 2643.4,-256.715 2636.73,-255.844 2646.65,-260.513 2646.65,-260.513"/>
|
||||
<text text-anchor="middle" x="2918" y="-360.3" font-family="Times,serif" font-size="14.00">versions</text>
|
||||
</g>
|
||||
<!-- RegistrantVerification -->
|
||||
<g id="node48" class="node"><title>RegistrantVerification</title>
|
||||
<path fill="none" stroke="black" d="M4138,-2414C4138,-2414 4268,-2414 4268,-2414 4274,-2414 4280,-2420 4280,-2426 4280,-2426 4280,-2553 4280,-2553 4280,-2559 4274,-2565 4268,-2565 4268,-2565 4138,-2565 4138,-2565 4132,-2565 4126,-2559 4126,-2553 4126,-2553 4126,-2426 4126,-2426 4126,-2420 4132,-2414 4138,-2414"/>
|
||||
|
@ -2010,13 +1937,6 @@
|
|||
<polygon fill="#d7df82" stroke="#d7df82" points="1952.06,-264.413 1957.91,-255.135 1952.76,-259.462 1953.45,-254.51 1953.45,-254.51 1953.45,-254.51 1952.76,-259.462 1949,-253.885 1952.06,-264.413 1952.06,-264.413"/>
|
||||
<text text-anchor="middle" x="1972" y="-360.3" font-family="Times,serif" font-size="14.00">versions</text>
|
||||
</g>
|
||||
<!-- DomainStatus->DomainStatusVersion -->
|
||||
<g id="edge139" class="edge"><title>DomainStatus->DomainStatusVersion</title>
|
||||
<path fill="none" stroke="#71309b" d="M2387.98,-1194.97C2349.1,-1031.98 2257.33,-647.246 2213.76,-464.595"/>
|
||||
<ellipse fill="none" stroke="#71309b" cx="2389.01" cy="-1199.29" rx="4.00001" ry="4.00001"/>
|
||||
<polygon fill="#71309b" stroke="#71309b" points="2213.72,-464.448 2215.78,-453.677 2212.56,-459.585 2211.4,-454.721 2211.4,-454.721 2211.4,-454.721 2212.56,-459.585 2207.03,-455.765 2213.72,-464.448 2213.72,-464.448"/>
|
||||
<text text-anchor="middle" x="2343" y="-820.3" font-family="Times,serif" font-size="14.00">versions</text>
|
||||
</g>
|
||||
<!-- Registrant -->
|
||||
<g id="node64" class="node"><title>Registrant</title>
|
||||
<path fill="none" stroke="black" d="M3884,-2301.5C3884,-2301.5 4022,-2301.5 4022,-2301.5 4028,-2301.5 4034,-2307.5 4034,-2313.5 4034,-2313.5 4034,-2665.5 4034,-2665.5 4034,-2671.5 4028,-2677.5 4022,-2677.5 4022,-2677.5 3884,-2677.5 3884,-2677.5 3878,-2677.5 3872,-2671.5 3872,-2665.5 3872,-2665.5 3872,-2313.5 3872,-2313.5 3872,-2307.5 3878,-2301.5 3884,-2301.5"/>
|
||||
|
|
Before Width: | Height: | Size: 228 KiB After Width: | Height: | Size: 220 KiB |
Loading…
Add table
Add a link
Reference in a new issue