~cytrogen/masto-fe

ref: ee702e36e58d638bcf75b2eae2ca86499693465e masto-fe/db/post_migrate/20190706233204_drop_stream_entries.rb -rw-r--r-- 228 bytes
ee702e36 — Claire Change follow recommendation materialized view to be faster in most cases (#26545) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

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

  def up
    drop_table :stream_entries
  end

  def down
    raise ActiveRecord::IrreversibleMigration
  end
end