Project

General

Profile

Download (220 Bytes) Statistics
| Branch: | Tag: | Revision:

foreman_pipeline / db / migrate / 20150408143011_remove_cv_promote_from_job.rb @ 6560f8e3

1
class RemoveCvPromoteFromJob < ActiveRecord::Migration
2
  def up
3
    remove_column :foreman_pipeline_jobs, :promote
4
  end
5

    
6
  def down
7
    add_column :foreman_pipeline_jobs, :promote, :boolean, :default => false
8
  end
9
end