-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
queue_job: fix partial index to add 'wait_dependencies' state
- Loading branch information
1 parent
f0baf49
commit d6e0a61
Showing
2 changed files
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html) | ||
|
||
from odoo.tools.sql import table_exists | ||
|
||
|
||
def migrate(cr, version): | ||
if table_exists(cr, "queue_job"): | ||
# Drop index 'queue_job_identity_key_state_partial_index', | ||
# it will be recreated during the update | ||
cr.execute("DROP INDEX IF EXISTS queue_job_identity_key_state_partial_index;") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters