Files
fizzy/db/migrate/20240917174301_create_assignments.rb
T
Jason Zimdars 56c7fe4abb Add assignees to a bubble WIP
- Still needs UI to display multiple assignees
- Still needs UI for changing/removing assignees
2024-09-17 17:10:23 -05:00

11 lines
259 B
Ruby

class CreateAssignments < ActiveRecord::Migration[8.0]
def change
create_table :assignments do |t|
t.references :user, null: false, foreign_key: true
t.references :bubble, null: false, foreign_key: true
t.timestamps
end
end
end