1
# -*- encoding: utf-8 -*-
2
from osv import osv, fields
4
class PaymentMode(osv.osv):
5
_inherit = "payment.mode"
7
def _auto_init(self, cr):
8
super(PaymentMode, self)._auto_init(cr)
9
cr.execute('ALTER TABLE payment_mode ALTER COLUMN account DROP NOT NULL')
13
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: