demarches-normaliennes/db/migrate/20230117094309_remove_row_from_champs.rb
2024-08-22 09:26:48 +02:00

7 lines
163 B
Ruby

# frozen_string_literal: true
class RemoveRowFromChamps < ActiveRecord::Migration[6.1]
def change
safety_assured { remove_columns :champs, :row }
end
end