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

6 lines
124 B
Ruby
Raw Normal View History

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