6 lines
189 B
Ruby
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
|