Skip to content

Commit

Permalink
Merge pull request #272 from fdupont-redhat/v2v_add_conversion_host_l…
Browse files Browse the repository at this point in the history
…imits

Add limits colums to conversion_hosts table
  • Loading branch information
agrare authored Sep 18, 2018
2 parents 8aa97da + 5070b58 commit 41028fd
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions db/migrate/20180917151300_add_limits_to_conversion_host.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
class AddLimitsToConversionHost < ActiveRecord::Migration[5.0]
def change
add_column :conversion_hosts, :concurrent_transformation_limit, :string
add_column :conversion_hosts, :cpu_limit, :string
add_column :conversion_hosts, :memory_limit, :string
add_column :conversion_hosts, :network_limit, :string
add_column :conversion_hosts, :blockio_limit, :string
end
end

0 comments on commit 41028fd

Please sign in to comment.