demarches-normaliennes/db/migrate/20230117094309_remove_row_from_champs.rb

8 lines
163 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
2023-01-17 10:46:05 +01:00
class RemoveRowFromChamps < ActiveRecord::Migration[6.1]
def change
safety_assured { remove_columns :champs, :row }
end
end