Skip to content

Commit

Permalink
fixed conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegPhenomenon committed Dec 6, 2024
1 parent 083b5dd commit a0c4fb1
Showing 1 changed file with 2 additions and 77 deletions.
79 changes: 2 additions & 77 deletions db/structure.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2676,52 +2676,6 @@ CREATE TABLE public.reserve_domain_invoices (
);


--
-- Name: reserve_domain_invoices_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE public.repp_logs_id_seq
-- Name: reserved_domain_statuses_id_seq; Type: SEQUENCE; Schema: public; Owner: -

-- Name: reserve_domain_invoices_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--


CREATE SEQUENCE public.reserve_domain_invoices_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;


--
-- Name: repp_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.repp_logs_id_seq OWNED BY public.repp_logs.id;
-- Name: reserved_domain_statuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
-- Name: reserve_domain_invoices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.reserve_domain_invoices_id_seq OWNED BY public.reserve_domain_invoices.id;


--
-- Name: reserve_domain_invoices; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.reserve_domain_invoices (
id bigint NOT NULL,
invoice_number character varying,
domain_names character varying[] DEFAULT '{}'::character varying[],
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL,
status integer DEFAULT 0,
metainfo character varying
);


--
-- Name: reserve_domain_invoices_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
Expand All @@ -2735,8 +2689,6 @@ CREATE SEQUENCE public.reserve_domain_invoices_id_seq


--
-- Name: reserve_domain_invoices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -

-- Name: reserve_domain_invoices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

Expand Down Expand Up @@ -3539,13 +3491,6 @@ ALTER TABLE ONLY public.repp_logs ALTER COLUMN id SET DEFAULT nextval('public.re
ALTER TABLE ONLY public.reserve_domain_invoices ALTER COLUMN id SET DEFAULT nextval('public.reserve_domain_invoices_id_seq'::regclass);


--
-- Name: reserve_domain_invoices id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.reserve_domain_invoices ALTER COLUMN id SET DEFAULT nextval('public.reserve_domain_invoices_id_seq'::regclass);


--
-- Name: reserved_domains id; Type: DEFAULT; Schema: public; Owner: -
--
Expand Down Expand Up @@ -4121,14 +4066,6 @@ ALTER TABLE ONLY public.reserve_domain_invoices
ADD CONSTRAINT reserve_domain_invoices_pkey PRIMARY KEY (id);


--
-- Name: reserve_domain_invoices reserve_domain_invoices_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.reserve_domain_invoices
ADD CONSTRAINT reserve_domain_invoices_pkey PRIMARY KEY (id);


--
-- Name: reserved_domains reserved_domains_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
Expand Down Expand Up @@ -4942,19 +4879,8 @@ CREATE INDEX index_registrant_verifications_on_domain_id ON public.registrant_ve
--

CREATE INDEX index_reserve_domain_invoices_on_invoice_number ON public.reserve_domain_invoices USING btree (invoice_number);
-- Name: index_reserved_domain_statuses_on_access_token; Type: INDEX; Schema: public; Owner: -



CREATE UNIQUE INDEX index_reserved_domain_statuses_on_access_token ON public.reserved_domain_statuses USING btree (access_token);


--
-- Name: index_reserved_domain_statuses_on_reserved_domain_id; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX index_reserved_domain_statuses_on_reserved_domain_id ON public.reserved_domain_statuses USING btree (reserved_domain_id);

--
-- Name: index_setting_entries_on_code; Type: INDEX; Schema: public; Owner: -
--
Expand Down Expand Up @@ -5790,8 +5716,7 @@ INSERT INTO "schema_migrations" (version) VALUES
('20241104104620'),
('20241112093540'),
('20241112124405'),
('20240722085530'),
('20240723110208'),
('20241022121525'),
('20241129095711'),
('20241206085817');


0 comments on commit a0c4fb1

Please sign in to comment.