metasploit-framework/data/sql/migrate/20101008111800_add_clients_...

11 lines
183 B
Ruby
Executable File

class AddClientsToCampaigns < ActiveRecord::Migration
def self.up
add_column :clients, :campaign_id, :integer
end
def self.down
remove_column :clients, :campaign_id
end
end