Page MenuHomeGRNET

20151120182046_add_before_after_job_fields_to_job_template.rb
No OneTemporary

File Metadata

Created
Sun, May 17, 11:05 AM

20151120182046_add_before_after_job_fields_to_job_template.rb

class AddBeforeAfterJobFieldsToJobTemplate < ActiveRecord::Migration
def up
add_column :job_templates, :client_before_run_file, :string
add_column :job_templates, :client_after_run_file, :string
end
def down
remove_column :job_templates, :client_before_run_file
remove_column :job_templates, :client_after_run_file
end
end

Event Timeline