From: Johan Herland Date: Sun, 1 Dec 2019 01:49:52 +0000 (+0100) Subject: models.Event: Add the user responsible for the event X-Git-Tag: v2.2.0-rc1~19 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=17a0e05114fd3c75bd773d2694fa1f5e4076782f;p=thirdparty%2Fpatchwork.git models.Event: Add the user responsible for the event This allows using the events as a kind of audit log, to see how a patch came to its current state/delegate. Signed-off-by: Johan Herland Reviewed-by: Stephen Finucane Cc: Mauro Carvalho Chehab --- diff --git a/patchwork/migrations/0037_event_actor.py b/patchwork/migrations/0037_event_actor.py new file mode 100644 index 00000000..719f514c --- /dev/null +++ b/patchwork/migrations/0037_event_actor.py @@ -0,0 +1,21 @@ +# Generated by Django 2.2.6 on 2019-10-08 04:21 + +from django.conf import settings +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ('patchwork', '0036_project_commit_url_format'), + ] + + operations = [ + migrations.AddField( + model_name='event', + name='actor', + field=models.ForeignKey(blank=True, help_text=b'The user that caused/created this event.', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to=settings.AUTH_USER_MODEL), + ), + ] diff --git a/patchwork/models.py b/patchwork/models.py index a908dd5c..b4f3bef6 100644 --- a/patchwork/models.py +++ b/patchwork/models.py @@ -955,6 +955,10 @@ class Event(models.Model): date = models.DateTimeField( default=datetime.datetime.utcnow, help_text='The time this event was created.') + actor = models.ForeignKey( + User, related_name='+', null=True, blank=True, + on_delete=models.SET_NULL, + help_text='The user that caused/created this event.') # event object