mirror of
https://github.com/odoo/runbot.git
synced 2025-03-17 00:15:47 +07:00
8 lines
262 B
Python
8 lines
262 B
Python
![]() |
def migrate(cr, version):
|
||
|
cr.execute("ALTER TABLE runbot_merge_project DROP COLUMN IF EXISTS fp_github_email")
|
||
|
cr.execute("""
|
||
|
ALTER TABLE runbot_merge_branch
|
||
|
DROP COLUMN IF EXISTS fp_sequence,
|
||
|
DROP COLUMN IF EXISTS fp_target
|
||
|
""")
|