mirror of
https://github.com/brain-tec/account_ebics.git
synced 2024-11-22 20:22:03 +00:00
10 lines
200 B
Python
10 lines
200 B
Python
|
# Copyright 2009-2020 Noviat.
|
||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||
|
|
||
|
|
||
|
def migrate(cr, version):
|
||
|
if not version:
|
||
|
return
|
||
|
|
||
|
cr.execute("DELETE FROM ebics_xfer;")
|