From 9d666b32bc5ba9141938352fc44be86b466dc365 Mon Sep 17 00:00:00 2001 From: Martin Date: Mon, 15 Nov 2021 13:17:11 +0100 Subject: [PATCH] fix(missing_file): add missing migration --- db/migrate/20211115112933_add_deleted_at_to_commentaires.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20211115112933_add_deleted_at_to_commentaires.rb diff --git a/db/migrate/20211115112933_add_deleted_at_to_commentaires.rb b/db/migrate/20211115112933_add_deleted_at_to_commentaires.rb new file mode 100644 index 000000000..1e48f5b89 --- /dev/null +++ b/db/migrate/20211115112933_add_deleted_at_to_commentaires.rb @@ -0,0 +1,5 @@ +class AddDeletedAtToCommentaires < ActiveRecord::Migration[6.1] + def change + add_column :commentaires, :deleted_at, :datetime + end +end