Commit 052f8499 authored by Tim Graham's avatar Tim Graham
Browse files

[1.9.x] Refs #22634 -- Removed unneeded app_label in custom session engine example.

Backport of cc0d1eaa from master
parent 0f1d5aef
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -817,9 +817,6 @@ to query the database for all active sessions for an account)::
    class CustomSession(AbstractBaseSession):
        account_id = models.IntegerField(null=True, db_index=True)

        class Meta:
            app_label = 'mysessions'

        @classmethod
        def get_session_store_class(cls):
            return SessionStore