Files
adamantium/db/migrate/20240210232136_add_last_checked_at_to_webmentions.rb

10 lines
161 B
Ruby

# frozen_string_literal: true
ROM::SQL.migration do
change do
alter_table :webmentions do
add_column :last_checked_at, :timestamp
end
end
end