forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-09-13 17:00:01 +00:00
parent d69a853c77
commit 49e5234503
1 changed files with 0 additions and 28 deletions

View File

@ -871,19 +871,6 @@ CREATE TABLE public.subscriptions (
);
--
-- Name: transactions; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.transactions (
id integer NOT NULL,
created_utc integer NOT NULL,
type character varying(12) NOT NULL,
amount integer NOT NULL,
email character varying(255) NOT NULL
);
--
-- Name: userblocks; Type: TABLE; Schema: public; Owner: -
--
@ -1476,14 +1463,6 @@ ALTER TABLE ONLY public.subscriptions
ADD CONSTRAINT subscriptions_pkey PRIMARY KEY (submission_id, user_id);
--
-- Name: transactions transactions_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.transactions
ADD CONSTRAINT transactions_pkey PRIMARY KEY (id);
--
-- Name: users uid_unique; Type: CONSTRAINT; Schema: public; Owner: -
--
@ -1969,13 +1948,6 @@ CREATE INDEX subs_idx ON public.subs USING btree (name);
CREATE INDEX subscription_user_index ON public.subscriptions USING btree (user_id);
--
-- Name: transactions_email_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX transactions_email_idx ON public.transactions USING btree (email);
--
-- Name: user_banned_idx; Type: INDEX; Schema: public; Owner: -
--