Files
metasploit-gs/data/sql/migrate/023_add_report_downloaded_at.rb
T
2011-11-10 19:48:32 -06:00

11 lines
189 B
Ruby
Executable File

class AddReportDownloadedAt < ActiveRecord::Migration
def self.up
add_column :reports, :downloaded_at, :timestamp
end
def self.down
remove_column :reports, :downloaded_at
end
end