remotes/1693045480750635534/spooky-22
SneedBot 2022-10-30 04:00:09 +00:00
parent 63fdd1028b
commit 6eb4e42f12
1 changed files with 10 additions and 1 deletions

View File

@ -391,7 +391,8 @@ CREATE TABLE public.comments (
blackjack_result character varying(860),
treasure_amount character varying(10),
wordle_result character varying(115),
body_ts tsvector GENERATED ALWAYS AS (to_tsvector('english'::regconfig, (body)::text)) STORED
body_ts tsvector GENERATED ALWAYS AS (to_tsvector('english'::regconfig, (body)::text)) STORED,
casino_game_id integer
);
@ -2154,6 +2155,14 @@ ALTER TABLE ONLY public.userblocks
ADD CONSTRAINT block_user_fkey FOREIGN KEY (user_id) REFERENCES public.users(id);
--
-- Name: comments casino_game_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.comments
ADD CONSTRAINT casino_game_fkey FOREIGN KEY (casino_game_id) REFERENCES public.casino_games(id);
--
-- Name: casino_games casino_games_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--