-
Notifications
You must be signed in to change notification settings - Fork 417
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
Add AbstractLogEntry class to allow extension without creating additional table #580
Comments
If this seems like a good idea, I would be interested in taking it on and submitting a pull request. |
Thanks @fugimuse for bringing this. |
@fugimuse |
@CleitonDeLima feel free to work on this |
A slightly off-topic question: @hramezani how should I configure my environment correctly for this project? I configured |
I also use the same setup. not sure what the problem is. |
I created this draft, but I can't run the tests with a new Maybe I configured the tests incorrectly. |
Thanks @CleitonDeLima for the PR and sorry for late reply! Have you checked the CI error you probably should be able to run the test easily by |
I would like to be able to extend
LogEntry
with custom fields without introducing an additional table. I think this can be be accomplished by introducing a new classAbstractBaseLogEntry
, containing all of the code fromLogEntry
and adding:New fields could then be accommodated in the log as follows:
The text was updated successfully, but these errors were encountered: