FEATURE: automatically delete replies on a topic after N days. (#9209)

This commit is contained in:
Vinoth Kannan
2020-03-19 21:06:31 +05:30
committed by GitHub
parent 0cd502a558
commit aad12822b7
16 changed files with 241 additions and 125 deletions

View File

@@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddDurationToTopicTimers < ActiveRecord::Migration[6.0]
def change
add_column :topic_timers, :duration, :integer, null: true
end
end