Skip to content

Commit

Permalink
adding migration to create new disabled column for automated workflow…
Browse files Browse the repository at this point in the history
… executions table
  • Loading branch information
ksierks committed Oct 22, 2024
1 parent d28682a commit 8d33a64
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# frozen_string_literal: true

# Migration to add a new disabled column to the automated workflow executions table
class AddDisabledToAutomatedWorkflowExecutions < ActiveRecord::Migration[7.2]
def change
add_column :automated_workflow_executions, :disabled, :boolean, default: false, null: false
end
end
3 changes: 2 additions & 1 deletion db/schema.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8d33a64

Please sign in to comment.