Project

General

Profile

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

foreman_pipeline / db / migrate / 20150313115956_change_jenkins_user_owner.rb @ 1cd46bac

1
class ChangeJenkinsUserOwner < ActiveRecord::Migration
2
  def up
3
    rename_column :integration_jenkins_users, :user_id, :owner_id
4
  end
5

    
6
  def down
7
    rename_column :integration_jenkins_users, :owner_id, :user_id 
8
  end
9
end