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

8 lines
220 B
Ruby

# frozen_string_literal: true
class AddDiscardedAtToCommentaires < ActiveRecord::Migration[6.1]
def change
add_column :commentaires, :discarded_at, :datetime
# add_index :commentaires, :discarded_at
end
end