mirror of
https://github.com/odoo/runbot.git
synced 2025-03-17 16:35:47 +07:00
7 lines
272 B
Python
7 lines
272 B
Python
![]() |
def migrate(cr, version):
|
||
|
""" Create draft column manually because the v13 orm can't handle the power
|
||
|
of adding new required columns
|
||
|
"""
|
||
|
cr.execute("ALTER TABLE runbot_merge_pull_requests"
|
||
|
" ADD COLUMN draft BOOLEAN NOT NULL DEFAULT false")
|