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