Topic Auto-Close: admins and mods can set a topic to automatically close after a number of days

This commit is contained in:
Neil Lalonde
2013-05-07 14:25:41 -04:00
parent 87469fa4b7
commit 9828c87525
33 changed files with 600 additions and 55 deletions

View File

@@ -0,0 +1,6 @@
class AddAutoCloseAtToTopics < ActiveRecord::Migration
def change
add_column :topics, :auto_close_at, :datetime
add_column :topics, :auto_close_user_id, :integer
end
end