mirror of
https://github.com/internetee/registry.git
synced 2025-07-25 12:08:27 +02:00
5 lines
128 B
Ruby
5 lines
128 B
Ruby
class AddSumCacheToInvoice < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :invoices, :sum_cache, :decimal
|
|
end
|
|
end
|