~cytrogen/masto-fe

ref: 73a92f9e7acdd5fda99549384c24c4038fe6bf83 masto-fe/db/post_migrate/20181116184611_copy_account_stats_cleanup.rb -rw-r--r-- 421 bytes
73a92f9e — renovate[bot] Update DefinitelyTyped types (non-major) (#27239) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class CopyAccountStatsCleanup < ActiveRecord::Migration[5.2]
  disable_ddl_transaction!

  def change
    safety_assured do
      remove_column :accounts, :statuses_count, :integer, default: 0, null: false
      remove_column :accounts, :following_count, :integer, default: 0, null: false
      remove_column :accounts, :followers_count, :integer, default: 0, null: false
    end
  end
end