2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-11-16 14:28:38 +01:00
|
|
|
class AddDiscardedAtToCommentaires < ActiveRecord::Migration[6.1]
|
|
|
|
def change
|
|
|
|
add_column :commentaires, :discarded_at, :datetime
|
|
|
|
# add_index :commentaires, :discarded_at
|
|
|
|
end
|
|
|
|
end
|