demarches-normaliennes/db/migrate/20240513140508_add_updated_by_to_champs.rb

8 lines
155 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2024-05-13 16:53:33 +02:00
class AddUpdatedByToChamps < ActiveRecord::Migration[7.0]
def change
add_column :champs, :updated_by, :text
end
end