misc fixes for bsky

This commit is contained in:
Dylan Knutson
2025-08-12 21:22:51 +00:00
parent ad0675a9aa
commit 171ddd430b
5 changed files with 31 additions and 15 deletions

View File

@@ -0,0 +1,15 @@
# typed: strict
# frozen_string_literal: true
class AddFirstSeenEntryToBskyPosts < ActiveRecord::Migration[7.2]
sig { void }
def change
change_table :domain_posts_bluesky_aux do |t|
t.references :first_seen_entry,
foreign_key: {
to_table: :http_log_entries,
},
index: false
end
end
end

View File

@@ -5866,6 +5866,7 @@ ALTER TABLE ONLY public.domain_twitter_tweets
SET search_path TO "$user", public;
INSERT INTO "schema_migrations" (version) VALUES
('20250812211640'),
('20250812182033'),
('20250811172839'),
('20250808004604'),