Remove unique constraint on Job name

Refs #2186
This commit is contained in:
Trevor Vallender 2023-12-05 14:28:42 +00:00
parent a71ffbcacc
commit bcb669745e
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class RemoveUniqueNameConstraintFromJobs < ActiveRecord::Migration[6.1]
def change
remove_index :jobs, :name
end
end