10 lines
161 B
Ruby
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
|