Refactored monthly invoice generation job

This commit is contained in:
Sergei Tsõganov 2022-10-12 09:59:21 +03:00
parent cd8e14a177
commit 5e6dbac462
20 changed files with 367 additions and 486 deletions

View file

@ -0,0 +1,5 @@
class AddSentAtToInvoices < ActiveRecord::Migration[6.1]
def change
add_column :invoices, :sent_at, :datetime
end
end