Add column for priorities

This commit is contained in:
Nat 2022-04-20 02:15:35 +08:00
parent 7a854fe504
commit 8b575a0bab
No known key found for this signature in database
GPG Key ID: C095C891379A319E
1 changed files with 7 additions and 0 deletions

View File

@ -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