mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
7 lines
233 B
Ruby
7 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
|