forked from saleor/saleor
-
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.
Remove CeleryTask model and mutex (saleor#12695)
* Remove CeleryTask model and mutex * Clarify comment about not seperating state and db in migration
- Loading branch information
Showing
3 changed files
with
18 additions
and
30 deletions.
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,17 @@ | ||
# Generated by Django 3.2.18 on 2023-04-27 07:56 | ||
|
||
from django.db import migrations | ||
|
||
|
||
# No need to seperate state and db, cause CeleryTask model | ||
# is no longer used in code in SaleorCore. | ||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("core", "0006_celerytask"), | ||
] | ||
|
||
operations = [ | ||
migrations.DeleteModel( | ||
name="CeleryTask", | ||
), | ||
] |
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
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