mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
2654a6685c
ATM it only implements server side of it, as my need is for automation purposes. However it should probably be added in the UI too as it's unexpected to have pinned_until and no bannered_until.
10 lines
248 B
Ruby
10 lines
248 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddBanneredUntil < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :topics, :bannered_until, :datetime, null: true
|
|
|
|
add_index :topics, :bannered_until, where: 'bannered_until IS NOT NULL'
|
|
end
|
|
end
|