mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:33:24 +08:00
8 lines
199 B
Ruby
8 lines
199 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddReviewablesForceReview < ActiveRecord::Migration[6.0]
|
||
|
def change
|
||
|
add_column :reviewables, :force_review, :boolean, default: false, null: false
|
||
|
end
|
||
|
end
|