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

7 lines
159 B
Ruby

# frozen_string_literal: true
class AddRebasedAtToChamps < ActiveRecord::Migration[6.1]
def change
add_column :champs, :rebased_at, :datetime
end
end