mirror of
https://github.com/mastodon/mastodon.git
synced 2025-05-07 20:26:15 +00:00

Signed-off-by: sneakers-the-rat <sneakers-the-rat@protonmail.com> Co-authored-by: jonny <j@nny.fyi> Co-authored-by: Claire <claire.github-309c@sitedethib.com> Co-authored-by: Kouhai <66407198+kouhaidev@users.noreply.github.com>
8 lines
188 B
Ruby
8 lines
188 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddFetchedRepliesAtToStatus < ActiveRecord::Migration[7.1]
|
|
def change
|
|
add_column :statuses, :fetched_replies_at, :datetime, null: true
|
|
end
|
|
end
|