pull/195/head
SneedBot 2023-08-15 20:18:01 +00:00
parent f804555163
commit 4728691986
1 changed files with 14 additions and 76 deletions

View File

@ -752,58 +752,6 @@ CREATE TABLE public.orgies (
);
--
-- Name: pgbench_accounts; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.pgbench_accounts (
aid integer NOT NULL,
bid integer,
abalance integer,
filler character(84)
)
WITH (fillfactor='100');
--
-- Name: pgbench_branches; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.pgbench_branches (
bid integer NOT NULL,
bbalance integer,
filler character(88)
)
WITH (fillfactor='100');
--
-- Name: pgbench_history; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.pgbench_history (
tid integer,
bid integer,
aid integer,
delta integer,
mtime timestamp without time zone,
filler character(22)
);
--
-- Name: pgbench_tellers; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.pgbench_tellers (
tid integer NOT NULL,
bid integer,
tbalance integer,
filler character(84)
)
WITH (fillfactor='100');
--
-- Name: posts; Type: TABLE; Schema: public; Owner: -
--
@ -1433,30 +1381,6 @@ ALTER TABLE ONLY public.users
ADD CONSTRAINT one_banner UNIQUE (bannerurl);
--
-- Name: pgbench_accounts pgbench_accounts_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.pgbench_accounts
ADD CONSTRAINT pgbench_accounts_pkey PRIMARY KEY (aid);
--
-- Name: pgbench_branches pgbench_branches_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.pgbench_branches
ADD CONSTRAINT pgbench_branches_pkey PRIMARY KEY (bid);
--
-- Name: pgbench_tellers pgbench_tellers_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.pgbench_tellers
ADD CONSTRAINT pgbench_tellers_pkey PRIMARY KEY (tid);
--
-- Name: post_options post_option_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
@ -1732,6 +1656,13 @@ CREATE INDEX comment_parent_index ON public.comments USING btree (parent_comment
CREATE INDEX comment_post_id_index ON public.comments USING btree (parent_post);
--
-- Name: comment_sticked_utc_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX comment_sticked_utc_idx ON public.comments USING btree (stickied_utc);
--
-- Name: comments_author_id_created_utc_idx; Type: INDEX; Schema: public; Owner: -
--
@ -2124,6 +2055,13 @@ CREATE INDEX post_new_sort_idx ON public.posts USING btree (is_banned, deleted_u
CREATE INDEX post_over_18_idx ON public.posts USING btree (over_18);
--
-- Name: post_sticked_utc_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX post_sticked_utc_idx ON public.posts USING btree (stickied_utc);
--
-- Name: posts_bump_utc_idx; Type: INDEX; Schema: public; Owner: -
--