mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
8 lines
233 B
Ruby
8 lines
233 B
Ruby
class AddDeferToPostActions < ActiveRecord::Migration
|
|
def change
|
|
# an action can be deferred by a moderator, used for flags
|
|
add_column :post_actions, :defer, :boolean
|
|
add_column :post_actions, :defer_by, :int
|
|
end
|
|
end
|