-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modernize package #280
Modernize package #280
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, added a couple minor comments
migrations.AlterIndexTogether( | ||
name='crudevent', | ||
index_together=set(), | ||
), | ||
migrations.AddIndex( | ||
model_name='crudevent', | ||
index=models.Index(fields=['object_id', 'content_type'], name='easyaudit_c_object__82020b_idx'), | ||
), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This might not be necessary once #258 is merged
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah it won't, but I'll solve the merge conflict once it lands.
@samamorgan looking good. But I'm not sure what the issue with |
This reverts commit 01dcf49. Fix version string
ce3e32f
to
4eb61fe
Compare
Fixed the issues, including adding a new migration. |
Reverts #279