Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20170830084744_destroy_gpg_signatures.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b04d36f6537156c28e7745f5f632fd60fbff6aea (plain)
1
2
3
4
5
6
7
8
9
10
class DestroyGpgSignatures < ActiveRecord::Migration
  DOWNTIME = false

  def up
    truncate(:gpg_signatures)
  end

  def down
  end
end