From: test test Date: Wed, 26 May 2021 15:11:28 +0000 (+0200) Subject: Migrate to Django 3.2 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=ad142147dd349fc2f273cadd899058a739931ff2;p=django-unique-session.git Migrate to Django 3.2 --- diff --git a/unique_session/models.py b/unique_session/models.py index 924f6e3..87c7b7c 100644 --- a/unique_session/models.py +++ b/unique_session/models.py @@ -10,3 +10,6 @@ class Session(BaseSession): updated_date = models.DateTimeField(_('updated date'), db_index=True, auto_now=True) + + class Meta: + app_label = "unique_session" \ No newline at end of file