Add privilegedExecution flag to database and Poseidon Strategy

This commit is contained in:
Sebastian Serth
2022-09-24 00:05:03 +02:00
committed by Sebastian Serth
parent dffeca27de
commit eb188dcd71
13 changed files with 51 additions and 10 deletions

View File

@ -0,0 +1,7 @@
# 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