FEATURE: auto-close topics based on last post

This commit is contained in:
Régis Hanol
2014-10-10 18:21:44 +02:00
parent ac72b0bcf6
commit 5754e8dd0f
28 changed files with 242 additions and 146 deletions

View File

@@ -0,0 +1,6 @@
class AddAutoCloseBasedOnLastPostAndAutoCloseHoursToTopics < ActiveRecord::Migration
def change
add_column :topics, :auto_close_based_on_last_post, :boolean, default: false
add_column :topics, :auto_close_hours, :float
end
end

View File

@@ -0,0 +1,5 @@
class AddAutoCloseBasedOnLastPostToCategories < ActiveRecord::Migration
def change
add_column :categories, :auto_close_based_on_last_post, :boolean, default: false
end
end