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

9 lines
220 B
Ruby
Raw Normal View History

# 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