Skip to content

Commit

Permalink
prefix workflow_node with 'configuration_'
Browse files Browse the repository at this point in the history
  • Loading branch information
mimodian committed Jun 4, 2018
1 parent 8e390df commit b36b5d7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
14 changes: 14 additions & 0 deletions db/migrate/20180601171211_create_configuration_workflow_node.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
class CreateConfigurationWorkflowNode < ActiveRecord::Migration[5.0]
def change
create_table :configuration_workflow_nodes do |t|
t.string :manager_ref
t.text :conditions # conditions to launch this node
t.bigint :parent_id # previous node
t.bigint :configuration_script_id # aka job_template
t.bigint :configuration_workflow_id # configuration_workflow that contains this
t.bigint :manager_id
t.timestamps
t.index(:configuration_workflow_id, :name => 'index_configuration_workflow_id'
end
end
end
13 changes: 0 additions & 13 deletions db/migrate/20180601171211_create_workflow_node.rb

This file was deleted.

0 comments on commit b36b5d7

Please sign in to comment.