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>
7 lines
188 B
Ruby
7 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
|