mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:47:22 +08:00
b950b3fb3f
When we run the S3 inventory, mark uploads that exist as verified true, those that don't as verified false, and uploads not included in the check / not yet checked as verified nil.
8 lines
175 B
Ruby
8 lines
175 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddVerifiedColumnToUploads < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :uploads, :verified, :boolean, null: true
|
|
end
|
|
end
|