Remove unused db column

This commit is contained in:
Artur Beljajev 2019-08-11 22:02:19 +03:00
parent d34e6430a2
commit 5a68035818
5 changed files with 20 additions and 31 deletions

View file

@ -3,7 +3,6 @@ class Invoice < ActiveRecord::Base
include Concerns::Invoice::Cancellable
include Concerns::Invoice::Payable
belongs_to :seller, class_name: 'Registrar'
belongs_to :buyer, class_name: 'Registrar'
has_one :account_activity
has_many :items, class_name: 'InvoiceItem', dependent: :destroy