12 lines
288 B
Ruby
12 lines
288 B
Ruby
|
class AddWorkflowsRuleFields < ActiveRecord::Migration
|
||
|
def up
|
||
|
add_column :workflows, :field_name, :string, :limit => 30
|
||
|
add_column :workflows, :rule, :string, :limit => 30
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
remove_column :workflows, :field_name
|
||
|
remove_column :workflows, :rule
|
||
|
end
|
||
|
end
|