-
-
Notifications
You must be signed in to change notification settings - Fork 543
Open
Labels
area: backendThis issue involves Python, Django or dependency (eg. database)This issue involves Python, Django or dependency (eg. database)bug
Milestone
Description
This model will not have an index on plugin_data field:
class SomeModel(PluginDataModel)
...
class Meta:
ordering = ["-id"]Fix:
class SomeModel(PluginDataModel)
...
class Meta(PluginDataModel.Meta):
ordering = ["-id"]Fix should also include updated migrations for new models
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
area: backendThis issue involves Python, Django or dependency (eg. database)This issue involves Python, Django or dependency (eg. database)bug