mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
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
|