6 lines
161 B
Ruby
6 lines
161 B
Ruby
class AddTestCommandToExecutionEnvironments < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :execution_environments, :test_command, :string
|
|
end
|
|
end
|