Archive webmentions if they have been removed from their source

This commit is contained in:
2024-02-11 10:36:26 +11:00
parent 65ed6f5731
commit 915b4fcd1f
7 changed files with 83 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
# frozen_string_literal: true
ROM::SQL.migration do
change do
alter_table :webmentions do
add_column :retrieval_attempts, :integer, default: 0
end
end
end

View File

@@ -0,0 +1,9 @@
# frozen_string_literal: true
ROM::SQL.migration do
change do
alter_table :webmentions do
add_column :last_checked_at, :timestamp
end
end
end