forked from zestedesavoir/zds-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Utilise la table django_session au lieu de utils_customsession
Le changement dans les sessions introduit par 2b2215e (PR zestedesavoir#6021) utilise une nouvelle table utils_customsession pour stocker les sessions, tout en conservant la table django_session.
- Loading branch information
1 parent
23c78ec
commit 8f97b3f
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.2.11 on 2024-08-25 20:51 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("utils", "0026_customsession"), | ||
] | ||
|
||
operations = [ | ||
migrations.RunSQL("DROP TABLE IF EXISTS django_session"), | ||
migrations.AlterModelTable( | ||
name="customsession", | ||
table="django_session", | ||
), | ||
] |