5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-17 22:26:23 +00:00

fixup! fix: no es necesario vincular actores con objetos

This commit is contained in:
f 2024-02-21 15:45:15 -03:00
parent 39bbc3a2bd
commit f517889992
No known key found for this signature in database

View file

@ -523,7 +523,6 @@ CREATE TABLE public.activity_pub_objects (
id uuid DEFAULT gen_random_uuid() NOT NULL, id uuid DEFAULT gen_random_uuid() NOT NULL,
created_at timestamp(6) without time zone NOT NULL, created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL, updated_at timestamp(6) without time zone NOT NULL,
actor_id uuid NOT NULL,
type character varying NOT NULL, type character varying NOT NULL,
uri character varying NOT NULL, uri character varying NOT NULL,
content jsonb DEFAULT '{}'::jsonb content jsonb DEFAULT '{}'::jsonb
@ -2005,13 +2004,6 @@ CREATE INDEX index_activity_pub_actors_on_uri ON public.activity_pub_actors USIN
CREATE INDEX index_activity_pub_instances_on_hostname ON public.activity_pub_instances USING btree (hostname); CREATE INDEX index_activity_pub_instances_on_hostname ON public.activity_pub_instances USING btree (hostname);
--
-- Name: index_activity_pub_objects_on_actor_id; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_activity_pub_objects_on_actor_id ON public.activity_pub_objects USING btree (actor_id);
-- --
-- Name: index_activity_pubs_on_site_id_and_object_id_and_object_type; Type: INDEX; Schema: public; Owner: - -- Name: index_activity_pubs_on_site_id_and_object_id_and_object_type; Type: INDEX; Schema: public; Owner: -
-- --
@ -2479,6 +2471,7 @@ INSERT INTO "schema_migrations" (version) VALUES
('20240219175839'), ('20240219175839'),
('20240219204011'), ('20240219204011'),
('20240219204224'), ('20240219204224'),
('20240220161414'); ('20240220161414'),
('20240221184007');