Files
adamantium/config/db/migrate/20240210231532_add_retrieval_attempt_to_webmentions.rb
2024-08-05 19:00:09 +10:00

10 lines
174 B
Ruby

# frozen_string_literal: true
ROM::SQL.migration do
change do
alter_table :webmentions do
add_column :retrieval_attempts, :integer, default: 0
end
end
end