implement soft delete for money moves

This commit is contained in:
Bilal
2020-10-09 16:12:44 +03:00
parent f2af0639f3
commit 722fc71f17
5 changed files with 17 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
class AddDeletedAtToMoneyMoves < ActiveRecord::Migration[5.2]
def change
add_column :money_moves, :deleted_at, :timestamp
end
end