demarches-normaliennes/db/migrate/20211115112933_add_discarded_at_to_commentaires.rb

6 lines
189 B
Ruby

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