Files
adamantium/db/migrate/20240210231532_add_retrieval_attempt_to_webmentions.rb

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