about summary refs log tree commit diff
path: root/db/migrate/20180812173710_copy_status_stats.rb
blob: 64a564ca07ba3ce9649f4467d5290bde6f134825 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class CopyStatusStats < ActiveRecord::Migration[5.2]
  disable_ddl_transaction!

  def up
    safety_assured do
      execute <<-SQL.squish
        INSERT INTO status_stats (status_id, reblogs_count, favourites_count, created_at, updated_at)
        SELECT id, reblogs_count, favourites_count, created_at, updated_at
        FROM statuses
        ON CONFLICT (status_id) DO UPDATE
        SET reblogs_count = EXCLUDED.reblogs_count, favourites_count = EXCLUDED.favourites_count
      SQL
    end
  end

  def down
    # Nothing
  end
end