Files
codeocean/db/migrate/20220923214003_add_privileged_execution_to_execution_environment.rb

8 lines
237 B
Ruby

# frozen_string_literal: true
class AddPrivilegedExecutionToExecutionEnvironment < ActiveRecord::Migration[6.1]
def change
add_column :execution_environments, :privileged_execution, :boolean, default: false, null: false
end
end