debian-mirror-gitlab/db/post_migrate/20170830084744_destroy_gpg_signatures.rb

11 lines
140 B
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
class DestroyGpgSignatures < ActiveRecord::Migration
DOWNTIME = false
def up
truncate(:gpg_signatures)
end
def down
end
end