Add column for priorities
This commit is contained in:
parent
7a854fe504
commit
8b575a0bab
|
@ -0,0 +1,7 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class AddPriorityToAssignments < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
add_column :assignments, :priority, :integer, null: true
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue