journalduhacker/db/migrate/20151015143959_moderations_from_group.rb
joshua stein e3c881b81a implement automatic tag changing in response to user suggestions
Right now it's just a simple check for SUGGESTION_QUORUM (currently
4) number of users agreeing on a set of new tags.

Log a moderation to the story submitter when this happens, and allow
moderations to be done by a non-specific user.

Issue #207
2015-10-15 10:04:23 -05:00

6 lines
155 B
Ruby

class ModerationsFromGroup < ActiveRecord::Migration
def change
add_column :moderations, :is_from_suggestions, :boolean, :default => false
end
end