10 lines
140 B
Ruby
10 lines
140 B
Ruby
class DestroyGpgSignatures < ActiveRecord::Migration
|
|
DOWNTIME = false
|
|
|
|
def up
|
|
truncate(:gpg_signatures)
|
|
end
|
|
|
|
def down
|
|
end
|
|
end
|