aboutsummaryrefslogtreecommitdiff
path: root/users
diff options
context:
space:
mode:
authorBobby <[email protected]>2023-05-02 21:55:42 -0400
committerBobby <[email protected]>2023-05-02 21:55:42 -0400
commit4d2a4089529205bf326562ac81c4b3a7ee856a9b (patch)
treee041fb78a14e872d85fe24769848705678a6e9b6 /users
parent5db4fef9c6e187d774d2974dfdec1e9f65151c18 (diff)
downloadthatcomputerscientist-4d2a4089529205bf326562ac81c4b3a7ee856a9b.tar.xz
thatcomputerscientist-4d2a4089529205bf326562ac81c4b3a7ee856a9b.zip
Update Image Directory
Diffstat (limited to 'users')
-rw-r--r--users/migrations/0012_alter_tokenstore_expires.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/users/migrations/0012_alter_tokenstore_expires.py b/users/migrations/0012_alter_tokenstore_expires.py
new file mode 100644
index 00000000..4b3481fd
--- /dev/null
+++ b/users/migrations/0012_alter_tokenstore_expires.py
@@ -0,0 +1,17 @@
+# Generated by Django 4.1.4 on 2023-05-03 01:54
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+ dependencies = [
+ ("users", "0011_tokenstore"),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name="tokenstore",
+ name="expires",
+ field=models.DateTimeField(),
+ ),
+ ]