Added autodelete for users after one year inactivity

This commit is contained in:
Sarah Faey 2022-12-08 17:37:00 +01:00
parent c886c6475e
commit 929ca9c0a7
7 changed files with 730 additions and 2 deletions

View file

@ -447,6 +447,12 @@ namespace Lieb.Migrations
b.Property<DateTime?>("Birthday")
.HasColumnType("TEXT");
b.Property<DateTime>("CreatedAt")
.HasColumnType("TEXT");
b.Property<DateTime?>("LastSignUpAt")
.HasColumnType("TEXT");
b.Property<int>("MainGW2Account")
.HasColumnType("INTEGER");