Add versions table/model for prices

This commit is contained in:
Alex Sherman 2020-09-10 15:55:30 +05:00
parent e03ae63acf
commit 86ea2319c8
5 changed files with 92 additions and 16 deletions

View file

@ -0,0 +1,7 @@
module Billing
class PriceVersion < PaperTrail::Version
self.table_name = :log_prices
self.sequence_name = :log_prices_id_seq
end
end