mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-12 11:52:01 +01:00
9288f34fbf
git-svn-id: file:///home/svn/framework3/trunk@8804 4d416f70-5f16-0410-b530-b9f4589650da
11 lines
159 B
Ruby
11 lines
159 B
Ruby
class AddTasksResult < ActiveRecord::Migration
|
|
def self.up
|
|
add_column :tasks, :result, :text
|
|
end
|
|
|
|
def self.down
|
|
remove_column :tasks, :result
|
|
end
|
|
end
|
|
|