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

8 lines
190 B
Ruby

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