Persist metrics for container usage (execution time and waiting time) to Testrun table

This commit is contained in:
Sebastian Serth
2020-03-26 14:03:37 +01:00
parent 00fc96542b
commit 48d06b6dbe
4 changed files with 37 additions and 4 deletions

View File

@ -0,0 +1,6 @@
class AddContainerExecutionTimeToTestruns < ActiveRecord::Migration[5.2]
def change
add_column :testruns, :container_execution_time, :interval
add_column :testruns, :waiting_for_container_time, :interval
end
end