about summary refs log tree commit diff
path: root/db/post_migrate/20220310060959_optimize_null_index_web_push_subscriptions_access_token_id.rb
blob: fb49e33e9336ad9dc9aa3c504f9154a48fde570e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

require Rails.root.join('lib', 'mastodon', 'migration_helpers')

class OptimizeNullIndexWebPushSubscriptionsAccessTokenId < ActiveRecord::Migration[5.2]
  include Mastodon::MigrationHelpers

  disable_ddl_transaction!

  def up
    update_index :web_push_subscriptions, 'index_web_push_subscriptions_on_access_token_id', :access_token_id, where: 'access_token_id IS NOT NULL'
  end

  def down
    update_index :web_push_subscriptions, 'index_web_push_subscriptions_on_access_token_id', :access_token_id
  end
end