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

11 lines
140 B
Ruby
Raw Normal View History

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