Kaydet (Commit) cc0d1eaa authored tarafından Tim Graham's avatar Tim Graham

Refs #22634 -- Removed unneeded app_label in custom session engine example.

üst 15a5755e
...@@ -800,9 +800,6 @@ to query the database for all active sessions for an account):: ...@@ -800,9 +800,6 @@ to query the database for all active sessions for an account)::
class CustomSession(AbstractBaseSession): class CustomSession(AbstractBaseSession):
account_id = models.IntegerField(null=True, db_index=True) account_id = models.IntegerField(null=True, db_index=True)
class Meta:
app_label = 'mysessions'
@classmethod @classmethod
def get_session_store_class(cls): def get_session_store_class(cls):
return SessionStore return SessionStore
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment