Project

General

Profile

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

foreman-docker / db / migrate / 20141028164633_change_cpuset_in_container.rb @ cc823b50

1
class ChangeCpusetInContainer < ActiveRecord::Migration
2
  def up
3
    change_column :containers, :cpu_set, :string
4
  end
5

    
6
  def down
7
    change_column :containers, :cpu_set, :integer
8
  end
9
end