add monitor scanned at to bsky monitor

This commit is contained in:
Dylan Knutson
2025-08-14 17:16:21 +00:00
parent 1d248c1f23
commit cfffe50541
8 changed files with 153 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
# typed: strict
class AddMonitorScannedAtToBskyAux < ActiveRecord::Migration[7.2]
sig { void }
def change
add_column :domain_posts_bluesky_aux, :monitor_scanned_at, :datetime
end
end

View File

@@ -1425,7 +1425,8 @@ CREATE TABLE public.domain_posts_bluesky_aux (
quote_uri character varying,
post_raw jsonb DEFAULT '{}'::jsonb,
first_seen_entry_id bigint,
scan_error character varying
scan_error character varying,
monitor_scanned_at timestamp(6) without time zone
);
@@ -6113,6 +6114,7 @@ ALTER TABLE ONLY public.domain_twitter_tweets
SET search_path TO "$user", public;
INSERT INTO "schema_migrations" (version) VALUES
('20250814170820'),
('20250814165718'),
('20250814152837'),
('20250813190947'),