implements #2658: private forum topics

This commit is contained in:
Albert Yi
2016-10-24 16:56:18 -07:00
parent 0757f201a0
commit 589df5f301
10 changed files with 121 additions and 60 deletions

View File

@@ -0,0 +1,5 @@
class AddMinLevelToForumTopics < ActiveRecord::Migration
def change
add_column :forum_topics, :min_level, :integer, :default => 0, :null => false
end
end