demarches-normaliennes/db/migrate/20211013131241_add_rebased_at_to_champs.rb

8 lines
159 B
Ruby
Raw Normal View History

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