mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
8e111b753a
* Move status counters to separate table, count replies * Migration to remove old counter columns from statuses table * Fix schema file
13 lines
337 B
Ruby
13 lines
337 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CopyStatusStatsCleanup < ActiveRecord::Migration[5.2]
|
|
disable_ddl_transaction!
|
|
|
|
def change
|
|
safety_assured do
|
|
remove_column :statuses, :reblogs_count, :integer, default: 0, null: false
|
|
remove_column :statuses, :favourites_count, :integer, default: 0, null: false
|
|
end
|
|
end
|
|
end
|