Files
codeocean/db/migrate/20140723135530_add_test_command_to_execution_environments.rb
2021-05-14 22:03:06 +02:00

8 lines
192 B
Ruby

# frozen_string_literal: true
class AddTestCommandToExecutionEnvironments < ActiveRecord::Migration[4.2]
def change
add_column :execution_environments, :test_command, :string
end
end