6 lines
103 B
Ruby
6 lines
103 B
Ruby
|
class DropVirusScanTable < ActiveRecord::Migration[7.0]
|
||
|
def up
|
||
|
drop_table :virus_scans
|
||
|
end
|
||
|
end
|