show reply / quotes for bsky posts
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
# typed: true
|
||||
# frozen_string_literal: true
|
||||
class AddIndexesToQuoteAndReplyBskyPosts < ActiveRecord::Migration[7.2]
|
||||
sig { void }
|
||||
def change
|
||||
add_index :domain_posts_bluesky_aux, :quote_uri
|
||||
add_index :domain_posts_bluesky_aux, :reply_to_uri
|
||||
end
|
||||
end
|
||||
@@ -4394,6 +4394,20 @@ CREATE INDEX index_domain_posts_bluesky_aux_on_base_table_id ON public.domain_po
|
||||
CREATE INDEX index_domain_posts_bluesky_aux_on_first_seen_entry_id ON public.domain_posts_bluesky_aux USING btree (first_seen_entry_id);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_domain_posts_bluesky_aux_on_quote_uri; Type: INDEX; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE INDEX index_domain_posts_bluesky_aux_on_quote_uri ON public.domain_posts_bluesky_aux USING btree (quote_uri);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_domain_posts_bluesky_aux_on_reply_to_uri; Type: INDEX; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE INDEX index_domain_posts_bluesky_aux_on_reply_to_uri ON public.domain_posts_bluesky_aux USING btree (reply_to_uri);
|
||||
|
||||
|
||||
--
|
||||
-- Name: index_domain_posts_e621_aux_on_base_table_id; Type: INDEX; Schema: public; Owner: -
|
||||
--
|
||||
@@ -5852,6 +5866,7 @@ ALTER TABLE ONLY public.domain_twitter_tweets
|
||||
SET search_path TO "$user", public;
|
||||
|
||||
INSERT INTO "schema_migrations" (version) VALUES
|
||||
('20250812182033'),
|
||||
('20250811172839'),
|
||||
('20250808004604'),
|
||||
('20250805200056'),
|
||||
|
||||
Reference in New Issue
Block a user