2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-09-17 15:55:35 +02:00
|
|
|
class MakePathNonnull < ActiveRecord::Migration[5.2]
|
|
|
|
def change
|
|
|
|
change_column_null :procedures, :path, false
|
|
|
|
add_index :procedures, [:path, :archived_at, :hidden_at], unique: true
|
|
|
|
end
|
|
|
|
end
|