6 lines
131 B
Ruby
6 lines
131 B
Ruby
|
|
class RemoveUniqueNumberConstraintOnChecks < ActiveRecord::Migration[8.0]
|
||
|
|
def change
|
||
|
|
remove_index :checks, :number
|
||
|
|
end
|
||
|
|
end
|