8 lines
225 B
Ruby
8 lines
225 B
Ruby
class AddDepartementToServices < ActiveRecord::Migration[7.0]
|
|
disable_ddl_transaction!
|
|
|
|
def change
|
|
add_column :services, :departement, :string
|
|
add_index :services, :departement, algorithm: :concurrently
|
|
end
|
|
end
|