Project

General

Profile

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

foreman-docker / db / migrate / 20141028164206_change_memory_in_container.rb @ cc823b50

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

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