Files
fizzy/db/migrate/20250327191456_add_workflow_to_buckets.rb
T
Jason Zimdars 1cf2e24bcc Set buckets at the workflow level
- All bubbles inherit the bucket's set workflow
2025-03-27 14:35:07 -05:00

6 lines
150 B
Ruby

class AddWorkflowToBuckets < ActiveRecord::Migration[8.1]
def change
add_reference :buckets, :workflow, null: true, foreign_key: true
end
end