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