Files
redux-scraper/db/migrate/20250812214415_create_bsky_user_last_scan.rb
2025-08-12 21:56:05 +00:00

12 lines
320 B
Ruby

class CreateBskyUserLastScan < ActiveRecord::Migration[7.2]
def change
change_table :domain_users_bluesky_aux do |t|
t.references :last_scan_log_entry,
foreign_key: {
to_table: :http_log_entries,
},
index: false
end
end
end