56c7fe4abb
- Still needs UI to display multiple assignees - Still needs UI for changing/removing assignees
11 lines
259 B
Ruby
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
|