discourse/db/migrate/20210621103509_add_bannered...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
248 B
Ruby
Raw Normal View History

# 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